Merge pull request #554 from j-palomo/menusliderwidthfix

Fixed: Player color slider size/position was wrong when using languag…
This commit is contained in:
coelckers 2016-02-09 10:11:57 +01:00
commit 93ff8562dc
1 changed files with 1 additions and 1 deletions

View File

@ -484,7 +484,7 @@ void FSliderItem::Drawer(bool selected)
screen->DrawText(mFont, selected? OptionSettings.mFontColorSelection : mFontColor, mXpos, mYpos, text, DTA_Clean, true, TAG_DONE);
int x = SmallFont->StringWidth ("Green") + 8 + mXpos;
int x2 = SmallFont->StringWidth (mText) + 8 + mXpos;
int x2 = SmallFont->StringWidth (text) + 8 + mXpos;
DrawSlider (MAX(x2, x), mYpos);
}