aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Sommerfeld <kai.sommerfeld@gmx.com>2021-01-13 22:15:26 +0100
committerKai Sommerfeld <kai.sommerfeld@gmx.com>2021-01-13 22:16:36 +0100
commit708d5ffbeb2cde0b33bddcdecc985de02cc59d56 (patch)
tree246bed118cef2ae1d8d855da544514b6e878724a
parentaecf662b642fef7fd8388135bd23d842094f0690 (diff)
[PVR] Guide window: Fix sort order toggling using button with id 4
-rw-r--r--xbmc/pvr/windows/GUIWindowPVRGuide.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/xbmc/pvr/windows/GUIWindowPVRGuide.cpp b/xbmc/pvr/windows/GUIWindowPVRGuide.cpp
index eedd212b09..67805e6bae 100644
--- a/xbmc/pvr/windows/GUIWindowPVRGuide.cpp
+++ b/xbmc/pvr/windows/GUIWindowPVRGuide.cpp
@@ -503,7 +503,8 @@ bool CGUIWindowPVRGuideBase::OnMessage(CGUIMessage& message)
}
}
else if (message.GetSenderId() == CONTROL_BTNVIEWASICONS ||
- message.GetSenderId() == CONTROL_BTNSORTBY)
+ message.GetSenderId() == CONTROL_BTNSORTBY ||
+ message.GetSenderId() == CONTROL_BTNSORTASC)
{
RefreshView(message, false);
bReturn = true;