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
1 changed files with 2 additions and 0 deletions

View File

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