mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-01 08:29:27 +02:00
Fix case of complete URL with anchor given to HelpSystem::ShowHelp...
... but there were no examples of this anywhere. The assignment to webHelpPage was just overridden a few lines later.
This commit is contained in:
parent
3ebd8d4014
commit
6fe7a7dfa1
@ -362,7 +362,8 @@ void HelpSystem::ShowHelp(wxWindow *parent,
|
|||||||
else if (releasePageName.StartsWith( "http" ) )
|
else if (releasePageName.StartsWith( "http" ) )
|
||||||
{
|
{
|
||||||
localHelpPage = "";
|
localHelpPage = "";
|
||||||
webHelpPage = releasePageName + anchor;
|
releasePageName += anchor;
|
||||||
|
// webHelpPath remains empty
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user