Added event.Skip() to the OnFocusChange event. Fixes the pulldown menus.

This commit is contained in:
skidau 2015-03-20 22:01:23 +11:00
parent 9b1c2d3108
commit 87bffb5972

View File

@ -1201,6 +1201,8 @@ void CFrame::OnFocusChange(wxFocusEvent& event)
}
UpdateGUI();
}
event.Skip();
}
void CFrame::DoFullscreen(bool enable_fullscreen)