- Reverted circle drawing algorithm.

- Fixed Launcher savegame load menu.

svn-id: r34610
This commit is contained in:
Vicent Marti 2008-09-20 13:52:12 +00:00
parent 0d4ce96799
commit 46168618be
2 changed files with 33 additions and 73 deletions

View file

@ -517,6 +517,7 @@ SaveLoadChooser::SaveLoadChooser(const String &title, const String &buttonLabel)
_delSupport = _metaInfoSupport = _thumbnailSupport = _saveDateSupport = _playTimeSupport = false;
// _drawingHints |= GUI::THEME_HINT_SPECIAL_COLOR;
_backgroundType = Theme::kDialogBackgroundDefault;
new StaticTextWidget(this, "ScummSaveLoad.Title", title);
@ -622,15 +623,12 @@ void SaveLoadChooser::reflowLayout() {
int thumbY = y + kLineHeight;
int textLines = 0;
if (_saveDateSupport)
textLines += 2;
if (_playTimeSupport)
textLines += 1;
if (!_saveDateSupport)
textLines++;
if (!_playTimeSupport)
textLines++;
if (textLines)
++textLines;
_container->resize(x, y, w, h + textLines * kLineHeight);
_container->resize(x, y, w, h - (kLineHeight * textLines));
_gfxWidget->resize(thumbX, thumbY, thumbW, thumbH);
int height = thumbY + thumbH + kLineHeight;