mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-11 15:15:57 +01:00
If logger does not exist, don't try to delete it.
This commit is contained in:
@@ -2026,7 +2026,8 @@ void AudacityProject::OnCloseWindow(wxCloseEvent & event)
|
||||
|
||||
if (gAudacityProjects.IsEmpty() && !gIsQuitting) {
|
||||
|
||||
wxGetApp().mLogger->Show(false);
|
||||
if( wxGetApp().mLogger )
|
||||
wxGetApp().mLogger->Show(false);
|
||||
|
||||
#if !defined(__WXMAC__)
|
||||
// LL: On the Mac, we don't want the logger open after all projects
|
||||
|
||||
Reference in New Issue
Block a user