From ba263d07791def87352c27d041575f72e0bf508f Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sat, 3 Dec 2016 20:01:16 -0500 Subject: [PATCH] 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. --- src/AudacityApp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AudacityApp.cpp b/src/AudacityApp.cpp index 47f492f97..7a84f0baa 100644 --- a/src/AudacityApp.cpp +++ b/src/AudacityApp.cpp @@ -1143,6 +1143,7 @@ int AudacityApp::FilterEvent(wxEvent & event) { const auto window = ((wxWindow *)e.GetEventObject()); window->SetFocus(); + window->NavigateIn(); } } #endif