mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 03:31:40 +00:00
GUI: Remove left-over code from theme based fill color in thumbnail display.
This commit is contained in:
parent
4f7c65af0e
commit
e7cd238809
@ -188,8 +188,6 @@ enum {
|
||||
|
||||
SaveLoadChooserSimple::SaveLoadChooserSimple(const String &title, const String &buttonLabel, bool saveMode)
|
||||
: SaveLoadChooserDialog("SaveLoadChooser", saveMode), _list(0), _chooseButton(0), _deleteButton(0), _gfxWidget(0) {
|
||||
_fillR = _fillG = _fillB = 0;
|
||||
|
||||
_backgroundType = ThemeEngine::kDialogBackgroundSpecial;
|
||||
|
||||
new StaticTextWidget(this, "SaveLoadChooser.Title", title);
|
||||
@ -327,9 +325,6 @@ void SaveLoadChooserSimple::reflowLayout() {
|
||||
|
||||
_playtime->setVisible(_playTimeSupport);
|
||||
|
||||
_fillR = 0;
|
||||
_fillG = 0;
|
||||
_fillB = 0;
|
||||
updateSelection(false);
|
||||
} else {
|
||||
_container->setVisible(false);
|
||||
@ -349,7 +344,9 @@ void SaveLoadChooserSimple::updateSelection(bool redraw) {
|
||||
bool isWriteProtected = false;
|
||||
bool startEditMode = _list->isEditable();
|
||||
|
||||
_gfxWidget->setGfx(-1, -1, _fillR, _fillG, _fillB);
|
||||
// We used to support letting the themes specify the fill color with our
|
||||
// initial theme based GUI. But this support was dropped.
|
||||
_gfxWidget->setGfx(-1, -1, 0, 0, 0);
|
||||
_date->setLabel(_("No date saved"));
|
||||
_time->setLabel(_("No time saved"));
|
||||
_playtime->setLabel(_("No playtime saved"));
|
||||
|
@ -119,8 +119,6 @@ private:
|
||||
SaveStateList _saveList;
|
||||
String _resultString;
|
||||
|
||||
uint8 _fillR, _fillG, _fillB;
|
||||
|
||||
void updateSaveList();
|
||||
void updateSelection(bool redraw);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user