Scroll truncated button labels on focus
authorBl4ck09 <bl4ck09@me.com>
Thu, 30 Jan 2014 21:36:02 +0000 (22:36 +0100)
committerBl4ck09 <bl4ck09@me.com>
Thu, 30 Jan 2014 21:36:02 +0000 (22:36 +0100)
xbmc/guilib/GUIButtonControl.cpp

index ce6a310..d590623 100644 (file)
@@ -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();
 }