diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2021-01-15 07:46:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 07:46:59 +0100 |
commit | 6995aad7c37d2a5c2bff7c8d6b1ab0e4ad315963 (patch) | |
tree | 54e976426818d93fc4ac56dc3bf88e2d3f099122 | |
parent | 84093b642dfc2eb62586c28679c7797e1d69b58c (diff) | |
parent | 708d5ffbeb2cde0b33bddcdecc985de02cc59d56 (diff) |
Merge pull request #19060 from ksooo/pvr-fix-guide-window-toggle-sort-order
[PVR] Guide window: Fix sort order toggling using button with id 4
-rw-r--r-- | xbmc/pvr/windows/GUIWindowPVRGuide.cpp | 3 |
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; |