From abb62df6f3cd0f82fadedab9f08fb573788a9551 Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Fri, 8 Jun 2018 17:24:23 -0400 Subject: [PATCH] pause on menu pulldown on windows only (FIXED) Previous commit had an #ifndef when what was needed was an #ifdef. --- src/wx/wxvbam.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/wxvbam.cpp b/src/wx/wxvbam.cpp index 14d4f080..e2d807d2 100644 --- a/src/wx/wxvbam.cpp +++ b/src/wx/wxvbam.cpp @@ -603,7 +603,7 @@ EVT_DROP_FILES(MainFrame::OnDropFile) // model works, in addition the audio will loop with SDL, so we still pause on // Windows, TODO: this needs to be fixed properly // -#ifndef __WXMSW__ +#ifdef __WXMSW__ EVT_MENU_OPEN(MainFrame::MenuPopped) EVT_MENU_CLOSE(MainFrame::MenuPopped) EVT_MENU_HIGHLIGHT_ALL(MainFrame::MenuPopped)