* modified task window to define what the bracketed numbers mean.

* modified main page banner to use actual deck names and not the filename when
   displaying stats information.
This commit is contained in:
techdragon.nguyen@gmail.com
2010-11-29 12:45:48 +00:00
parent 8de00561d5
commit 4badcc374f
3 changed files with 17 additions and 9 deletions

View File

@@ -181,6 +181,11 @@ std::string VerticalTextScroller::wordWrap(std::string sentence, float width)
numLines++;
}
}
else if ( sentence[idx] == '\n' )
{
numLines++;
breakIdx = idx;
}
}
if ( numLines * mFont->GetHeight() > mHeight )
mScrollerInitialized = true;