1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-21 14:50:06 +02:00

Don't cycle to project window when using Alt+F6 and Alt+Shift+F6

This commit is contained in:
Leland Lucius 2015-05-24 05:14:40 -05:00
parent 22cb98d411
commit c749ffc471

4
src/Menus.cpp Normal file → Executable file
View 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;
}