diff options
Diffstat (limited to 'xbmc/guilib/GUIButtonControl.cpp')
-rw-r--r-- | xbmc/guilib/GUIButtonControl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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(); } |