1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-19 17:40:51 +02:00

Bug 1411 - Multiple non-modal "Help from the Internet" windows

This commit is contained in:
James Crook 2019-07-30 12:30:57 +01:00
parent 5b277dc9f8
commit aee4e5deaa

View File

@ -283,7 +283,9 @@ void HelpSystem::ShowHelp(wxWindow *parent,
// Use Built-in browser to suggest you use the remote url.
wxString Text = HelpText( wxT("remotehelp") );
Text.Replace( wxT("*URL*"), remoteURL );
ShowHtmlText( parent, _("Help on the Internet"), Text, false, bModal );
// Always make the 'help on the internet' dialog modal.
// Fixes Bug 1411.
ShowHtmlText( parent, _("Help on the Internet"), Text, false, true );
}
else if( HelpMode == wxT("Local") || alwaysDefaultBrowser)
{