1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-03 17:19:43 +02:00

Bug1329: not wholly satisfactory fix...

... Partial reversion of commit 2e8ee5fe75789d60869b19fe1986c8d47cf0b995

Now, if you open an effect dialog, Return key will apply it.  But, if you
cycle among windows with alt+f6, then the focus moves among the controls in
the effect dialog, and I don't know how to prevent that.

At least so it is in Mac.  I have not verified it with Linux.
This commit is contained in:
Paul Licameli 2016-12-03 20:01:16 -05:00
parent 493230e141
commit ba263d0779

View File

@ -1143,6 +1143,7 @@ int AudacityApp::FilterEvent(wxEvent & event)
{
const auto window = ((wxWindow *)e.GetEventObject());
window->SetFocus();
window->NavigateIn();
}
}
#endif