mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-08 08:01:19 +02:00
LinkingWindow now handles https as well as http.
This commit is contained in:
parent
f7df5d2a02
commit
9bef4869c8
@ -525,6 +525,10 @@ void AboutDialog::PopulateInformationPage( ShuttleGui & S )
|
||||
// Current date
|
||||
AddBuildinfoRow(&informationStr, _("Program build date: "), __TDATE__);
|
||||
|
||||
// Uncomment the next two lines to test hyperlinks work from here.
|
||||
// AddBuildinfoRow(&informationStr, wxT("Link Test:"),
|
||||
// wxT("<a href=\"https:web.audacityteam.org\">Click bait</a>") );
|
||||
|
||||
AddBuildinfoRow(&informationStr, _("Commit Id:"),
|
||||
#include "RevisionIdent.h"
|
||||
);
|
||||
|
@ -113,7 +113,7 @@ void LinkingHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link)
|
||||
OpenInDefaultBrowser( link );
|
||||
return;
|
||||
}
|
||||
else if( !href.StartsWith( wxT("http:")))
|
||||
else if( !href.StartsWith( wxT("http:")) && !href.StartsWith( wxT("https:")) )
|
||||
{
|
||||
HtmlWindow::OnLinkClicked( link );
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user