From f229aab58a58545cc7876b2b1be3437893d59ee7 Mon Sep 17 00:00:00 2001 From: James Crook Date: Tue, 6 Dec 2016 12:27:42 +0000 Subject: [PATCH] Bug 1329 - Adjustment: Part of the fix only applies to OSX; No longer apply to Linux too. Adjustment proposed/tested by Steve Daulton. --- src/AudacityApp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/AudacityApp.cpp b/src/AudacityApp.cpp index 7a84f0baa..4580a5a1b 100644 --- a/src/AudacityApp.cpp +++ b/src/AudacityApp.cpp @@ -1143,7 +1143,9 @@ int AudacityApp::FilterEvent(wxEvent & event) { const auto window = ((wxWindow *)e.GetEventObject()); window->SetFocus(); +#if defined(__WXMAC__) window->NavigateIn(); +#endif } } #endif