mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-08 16:11:14 +02:00
When we bring up the log window, raise it to top of Z order.
This commit is contained in:
parent
66f7ec0c5c
commit
e3f3b687c1
@ -999,7 +999,7 @@ void AudacityProject::CreateMenusAndCommands()
|
||||
|
||||
c->AddItem(wxT("QuickHelp"), _("&Quick Help (in web browser)"), FN(OnQuickHelp));
|
||||
c->AddItem(wxT("Manual"), _("&Manual (in web browser)"), FN(OnManual));
|
||||
c->AddItem(wxT("Log"), _("Show &Log..."), FN(OnLog));
|
||||
c->AddItem(wxT("Log"), _("Show &Log..."), FN(OnShowLog));
|
||||
|
||||
if (!mCleanSpeechMode) {
|
||||
|
||||
@ -5478,9 +5478,11 @@ void AudacityProject::OnManual()
|
||||
wxT("http://manual.audacityteam.org/index.php?title=Main_Page" ));
|
||||
}
|
||||
|
||||
void AudacityProject::OnLog()
|
||||
void AudacityProject::OnShowLog()
|
||||
{
|
||||
wxGetApp().mLogger->Show();
|
||||
wxLogWindow* pLogger = wxGetApp().mLogger;
|
||||
pLogger->Show();
|
||||
pLogger->GetFrame()->Raise();
|
||||
}
|
||||
|
||||
void AudacityProject::OnBenchmark()
|
||||
|
@ -361,7 +361,7 @@ wxString BuildCleanFileName(wxString fileName);
|
||||
void OnAbout();
|
||||
void OnQuickHelp();
|
||||
void OnManual();
|
||||
void OnLog();
|
||||
void OnShowLog();
|
||||
void OnHelpWelcome();
|
||||
void OnBenchmark();
|
||||
void OnScreenshot();
|
||||
|
Loading…
x
Reference in New Issue
Block a user