mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 16:49:41 +02:00
Bug1511, partial: fix crash using Quit from Mac tool dock, but...
... when multiple unsaved projects are open, there is still a prompt to save only one of them. I don't yet know why.
This commit is contained in:
parent
37a0cd3af6
commit
412d651e6e
@ -369,7 +369,7 @@ Meter::~Meter()
|
||||
|
||||
// LLL: This prevents a crash during termination if monitoring
|
||||
// is active.
|
||||
if (gAudioIO->IsMonitoring())
|
||||
if (gAudioIO && gAudioIO->IsMonitoring())
|
||||
gAudioIO->StopStream();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user