Skip to content

Commit

Permalink
[pvr] fixed - also map ACTION_PREVIOUS_MENU to g_windowManager.Previo…
Browse files Browse the repository at this point in the history
…usWindow() in CGUIWindowPVRCommon::OnAction(). closes xbmc#13313
  • Loading branch information
opdenkamp committed Oct 30, 2012
1 parent ac60a1d commit d199f16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xbmc/pvr/windows/GUIWindowPVRCommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ bool CGUIWindowPVRCommon::OnAction(const CAction &action)
bool bReturn = false;

if (action.GetID() == ACTION_NAV_BACK ||
action.GetID() == ACTION_PARENT_DIR)
action.GetID() == ACTION_PARENT_DIR ||
action.GetID() == ACTION_PREVIOUS_MENU)
{
g_windowManager.PreviousWindow();
bReturn = true;
Expand Down

0 comments on commit d199f16

Please sign in to comment.