diff options
author | Vicent Marti | 2009-02-19 00:37:34 +0000 |
---|---|---|
committer | Vicent Marti | 2009-02-19 00:37:34 +0000 |
commit | e7ee119603a6f2ca6a7893d145cc973b6cba637b (patch) | |
tree | b6fe797dba4254063e7b02a95074b12cee0b65b2 | |
parent | ad4f3fb4101638d88f253ecb3a7e521c7a0f8a94 (diff) | |
download | scummvm-rg350-e7ee119603a6f2ca6a7893d145cc973b6cba637b.tar.gz scummvm-rg350-e7ee119603a6f2ca6a7893d145cc973b6cba637b.tar.bz2 scummvm-rg350-e7ee119603a6f2ca6a7893d145cc973b6cba637b.zip |
Fixed regression in Options menu and disabled Save/Load buttons.
svn-id: r38524
-rw-r--r-- | gui/saveload.cpp | 2 | ||||
-rw-r--r-- | gui/widget.cpp | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/gui/saveload.cpp b/gui/saveload.cpp index 21be09d99e..09b4401cca 100644 --- a/gui/saveload.cpp +++ b/gui/saveload.cpp @@ -307,6 +307,8 @@ void SaveLoadChooser::updateSelection(bool redraw) { _playtime->draw(); _chooseButton->draw(); _deleteButton->draw(); + + draw(); } } diff --git a/gui/widget.cpp b/gui/widget.cpp index 67cf46ff8b..b93f93656c 100644 --- a/gui/widget.cpp +++ b/gui/widget.cpp @@ -150,8 +150,6 @@ void Widget::setEnabled(bool e) { setFlags(WIDGET_ENABLED); else clearFlags(WIDGET_ENABLED); - - _boss->draw(); } bool Widget::isEnabled() const { @@ -166,8 +164,6 @@ void Widget::setVisible(bool e) { clearFlags(WIDGET_INVISIBLE); else setFlags(WIDGET_INVISIBLE); - - _boss->draw(); } bool Widget::isVisible() const { |