1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-16 09:31:14 +01:00

Steve's patch to actually use the new modal ShowHelpDialog.

This commit is contained in:
martynshaw99
2014-08-26 23:04:33 +00:00
parent 85080b6d83
commit eccaf30646

View File

@@ -173,7 +173,8 @@ void LibraryPrefs::OnMP3FindButton(wxCommandEvent & WXUNUSED(event))
/// Opens help on downloading a suitable MP3 library is.
void LibraryPrefs::OnMP3DownButton(wxCommandEvent & WXUNUSED(event))
{
HelpSystem::ShowHelpDialog(this, wxT("FAQ_Installation_and_Plug-ins#lame"));
// Modal help dialogue required here
HelpSystem::ShowHelpDialog(this, wxT("FAQ:Installation_and_Plug-Ins#lame"), true);
}
void LibraryPrefs::SetFFmpegVersionText()
@@ -221,7 +222,7 @@ void LibraryPrefs::OnFFmpegFindButton(wxCommandEvent & WXUNUSED(event))
void LibraryPrefs::OnFFmpegDownButton(wxCommandEvent & WXUNUSED(event))
{
HelpSystem::ShowHelpDialog(this, wxT("FAQ_Installation_and_Plug-ins#ffdown"));
HelpSystem::ShowHelpDialog(this, wxT("FAQ:Installation_and_Plug-Ins#ffdown"), true);
}
bool LibraryPrefs::Apply()