pause on menu pulldown on windows only (FIXED)

Previous commit had an #ifndef when what was needed was an #ifdef.
This commit is contained in:
Rafael Kitover 2018-06-08 17:24:23 -04:00
parent cb3e9e3252
commit abb62df6f3
1 changed files with 1 additions and 1 deletions

View File

@ -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)