diff options
author | jmarshallnz <jcmarsha@gmail.com> | 2014-01-31 12:29:37 -0800 |
---|---|---|
committer | jmarshallnz <jcmarsha@gmail.com> | 2014-01-31 12:29:37 -0800 |
commit | b2969b378a18852fd4d6278ab731c67df0b6c815 (patch) | |
tree | ddd42dcb0fec98b33552b79904ae91b38d12d7f4 | |
parent | 1c669782f7ddc2dd35c40254501e1ae45bcb396b (diff) | |
parent | a93e7bedd798556de755b93c576b67fe8e5b7276 (diff) |
Merge pull request #4114 from Black09/button-label-scrolling
Scroll truncated button labels on focus
-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(); } |