From a93e7bedd798556de755b93c576b67fe8e5b7276 Mon Sep 17 00:00:00 2001 From: Bl4ck09 Date: Thu, 30 Jan 2014 22:36:02 +0100 Subject: Scroll truncated button labels on focus --- xbmc/guilib/GUIButtonControl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xbmc/guilib/GUIButtonControl.cpp b/xbmc/guilib/GUIButtonControl.cpp index ce6a310940..d59062376a 100644 --- a/xbmc/guilib/GUIButtonControl.cpp +++ b/xbmc/guilib/GUIButtonControl.cpp @@ -137,8 +137,10 @@ void CGUIButtonControl::ProcessText(unsigned int currentTime) m_label2.GetRenderRect() != label2RenderRect); changed |= m_label2.SetColor(GetTextColor()); + changed |= m_label2.Process(currentTime); } changed |= m_label.SetColor(GetTextColor()); + changed |= m_label.Process(currentTime); if (changed) MarkDirtyRegion(); } -- cgit v1.2.3