Skip to content

Commit

Permalink
fixed: textboxes in lists didn't respect the repeat attribute.
Browse files Browse the repository at this point in the history
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@35314 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
  • Loading branch information
jmarshallnz committed Nov 18, 2010
1 parent bd3cc5e commit dc315fa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions guilib/GUITextBox.cpp
Expand Up @@ -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
Expand Down

0 comments on commit dc315fa

Please sign in to comment.