diff options
-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 { |