Skip to content

Commit

Permalink
Merge pull request #2238 from skidau/OnFocusChange-pulldown
Browse files Browse the repository at this point in the history
Added event.Skip() to the OnFocusChange event.  Fixes the pulldown menus.
  • Loading branch information
lioncash committed Mar 20, 2015
2 parents 9b1c2d3 + 87bffb5 commit 357b011
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/DolphinWX/Frame.cpp
Expand Up @@ -1201,6 +1201,8 @@ void CFrame::OnFocusChange(wxFocusEvent& event)
}
UpdateGUI();
}

event.Skip();
}

void CFrame::DoFullscreen(bool enable_fullscreen)
Expand Down

0 comments on commit 357b011

Please sign in to comment.