mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 15:49:41 +02:00
If app is inactive, don't change transport buttons for modifier keys
This commit is contained in:
parent
a675b5907f
commit
0bd21e171c
@ -604,6 +604,9 @@ void ControlToolBar::OnIdle(wxIdleEvent & event)
|
||||
{
|
||||
event.Skip();
|
||||
|
||||
if (!wxTheApp->IsActive())
|
||||
return;
|
||||
|
||||
auto &projectAudioManager = ProjectAudioManager::Get( mProject );
|
||||
if ( projectAudioManager.Paused() )
|
||||
mPause->PushDown();
|
||||
|
Loading…
x
Reference in New Issue
Block a user