diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2017-04-08 10:28:16 +0200 |
---|---|---|
committer | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2017-04-08 16:23:05 +0200 |
commit | fe83633c3206af0b68a9b6bd68db77fb4c05b0cd (patch) | |
tree | 3455b11304bb4bda46740abd93aae18b360ba76e | |
parent | af3698bfa3c471a1b3156323ad4269cc4ef1dc8b (diff) |
[PVR] CPVRActionListener: Fix direct number input handling (to get agnostic to action listener registration order).
-rw-r--r-- | xbmc/pvr/PVRActionListener.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/pvr/PVRActionListener.cpp b/xbmc/pvr/PVRActionListener.cpp index a7a70b5195..4a52ee239f 100644 --- a/xbmc/pvr/PVRActionListener.cpp +++ b/xbmc/pvr/PVRActionListener.cpp @@ -120,8 +120,8 @@ bool CPVRActionListener::OnAction(const CAction &action) int iRemote = bIsJumpSMS ? action.GetID() - (ACTION_JUMP_SMS2 - REMOTE_2) : action.GetID(); CServiceBroker::GetPVRManager().GUIActions()->GetChannelNumberInputHandler().AppendChannelNumberDigit(iRemote - REMOTE_0); + return true; } - return true; } break; } |