Merge pull request #2238 from skidau/OnFocusChange-pulldown

Added event.Skip() to the OnFocusChange event.  Fixes the pulldown menus.
This commit is contained in:
Lioncash 2015-03-20 12:02:49 -04:00
commit 357b0110bc

View File

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