diff options
author | Martijn Kaijser <martijn@xbmc.org> | 2016-02-03 16:49:34 +0100 |
---|---|---|
committer | Martijn Kaijser <martijn@xbmc.org> | 2016-02-03 16:49:34 +0100 |
commit | cb70de5be69a0b95329af2eccedebbc78d3096c7 (patch) | |
tree | 2f48525fe2493f8be200704a6e1006dea9c95f0e | |
parent | 34d1e4912be7c473ebeaf7781b9a290c12fcb43e (diff) | |
parent | 5f240998a343d09126fda2e66f3c98ba986071ce (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.cpp | 1 |
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); |