diff options
author | jmarshallnz <jmarshallnz@svn> | 2010-11-14 11:44:22 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2010-11-14 11:44:22 +0000 |
commit | 09e3105b194c089f682e749fe38d0df4ca5e746a (patch) | |
tree | 800da44605edfb2d6ed8ecca94057d885ea0e967 | |
parent | 9db289036012695934df1bcbc71704ac1919fc37 (diff) |
fixed: textboxes in lists didn't respect the repeat attribute.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35258 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | guilib/GUITextBox.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guilib/GUITextBox.cpp b/guilib/GUITextBox.cpp index aee5c06509..9dcca48914 100644 --- a/guilib/GUITextBox.cpp +++ b/guilib/GUITextBox.cpp @@ -58,6 +58,8 @@ CGUITextBox::CGUITextBox(const CGUITextBox &from) m_autoScrollTime = from.m_autoScrollTime; m_autoScrollDelay = from.m_autoScrollDelay; m_autoScrollRepeatAnim = NULL; + if (from.m_autoScrollRepeatAnim) + m_autoScrollRepeatAnim = new CAnimation(*from.m_autoScrollRepeatAnim); m_label = from.m_label; m_info = from.m_info; // defaults |