mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-20 22:30:05 +02:00
Don't cycle to project window when using Alt+F6 and Alt+Shift+F6
This commit is contained in:
parent
22cb98d411
commit
c749ffc471
4
src/Menus.cpp
Normal file → Executable file
4
src/Menus.cpp
Normal file → Executable file
@ -2802,7 +2802,7 @@ void AudacityProject::NextWindow()
|
||||
}
|
||||
|
||||
// Ran out of siblings, so make the current project active
|
||||
if (!iter)
|
||||
if (!iter && IsEnabled())
|
||||
{
|
||||
w = this;
|
||||
}
|
||||
@ -2851,7 +2851,7 @@ void AudacityProject::PrevWindow()
|
||||
}
|
||||
|
||||
// Ran out of siblings, so make the current project active
|
||||
if (!iter)
|
||||
if (!iter && IsEnabled())
|
||||
{
|
||||
w = this;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user