mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Help dialogs are modal only when necessary
This commit is contained in:
@@ -177,8 +177,10 @@ void HelpSystem::ShowHtmlText(wxWindow *pParent,
|
||||
pFrame->SetSizeHints(pWnd->GetSize());
|
||||
|
||||
pFrame->SetName(Title);
|
||||
pFrame->Show( true );
|
||||
pWnd->ShowModal();
|
||||
if (bModal)
|
||||
pWnd->ShowModal();
|
||||
else
|
||||
pWnd->Show(true);
|
||||
|
||||
html->SetRelatedStatusBar( 0 );
|
||||
html->SetFocus();
|
||||
|
||||
Reference in New Issue
Block a user