From 1d4d5541eadd808ed40f1c10f85c00dd46449a9a Mon Sep 17 00:00:00 2001 From: Jonathan Marshall Date: Fri, 5 Oct 2012 11:58:20 +1300 Subject: [PATCH] reset the jumping timer when a non-letter action is received --- xbmc/guilib/GUIBaseContainer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xbmc/guilib/GUIBaseContainer.cpp b/xbmc/guilib/GUIBaseContainer.cpp index 75e0addfffabe..4e3bf79acd612 100644 --- a/xbmc/guilib/GUIBaseContainer.cpp +++ b/xbmc/guilib/GUIBaseContainer.cpp @@ -285,6 +285,8 @@ bool CGUIBaseContainer::OnAction(const CAction &action) OnJumpLetter((char)(action.GetID() & 0xff)); return true; } + // stop the timer on any other action + m_matchTimer.Stop(); switch (action.GetID()) {