aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Kaijser <martijn@xbmc.org>2016-02-03 16:49:34 +0100
committerMartijn Kaijser <martijn@xbmc.org>2016-02-03 16:49:34 +0100
commitcb70de5be69a0b95329af2eccedebbc78d3096c7 (patch)
tree2f48525fe2493f8be200704a6e1006dea9c95f0e
parent34d1e4912be7c473ebeaf7781b9a290c12fcb43e (diff)
parent5f240998a343d09126fda2e66f3c98ba986071ce (diff)
Merge pull request #9037 from anaconda/jarvis_fix-scroller-8197
[Jarvis] CGUIListContainer: reset scroller position too on GUI_MSG_LABEL_RESET.
-rw-r--r--xbmc/guilib/GUIListContainer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/guilib/GUIListContainer.cpp b/xbmc/guilib/GUIListContainer.cpp
index cf2b63ad98..caf8a80714 100644
--- a/xbmc/guilib/GUIListContainer.cpp
+++ b/xbmc/guilib/GUIListContainer.cpp
@@ -117,6 +117,7 @@ bool CGUIListContainer::OnMessage(CGUIMessage& message)
{
SetCursor(0);
SetOffset(0);
+ m_scroller.SetValue(0);
}
}
return CGUIBaseContainer::OnMessage(message);