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:
parent
cb3e9e3252
commit
abb62df6f3
|
@ -603,7 +603,7 @@ EVT_DROP_FILES(MainFrame::OnDropFile)
|
||||||
// model works, in addition the audio will loop with SDL, so we still pause on
|
// model works, in addition the audio will loop with SDL, so we still pause on
|
||||||
// Windows, TODO: this needs to be fixed properly
|
// Windows, TODO: this needs to be fixed properly
|
||||||
//
|
//
|
||||||
#ifndef __WXMSW__
|
#ifdef __WXMSW__
|
||||||
EVT_MENU_OPEN(MainFrame::MenuPopped)
|
EVT_MENU_OPEN(MainFrame::MenuPopped)
|
||||||
EVT_MENU_CLOSE(MainFrame::MenuPopped)
|
EVT_MENU_CLOSE(MainFrame::MenuPopped)
|
||||||
EVT_MENU_HIGHLIGHT_ALL(MainFrame::MenuPopped)
|
EVT_MENU_HIGHLIGHT_ALL(MainFrame::MenuPopped)
|
||||||
|
|
Loading…
Reference in New Issue