diff options
Diffstat (limited to 'src/gui/buysell.cpp')
-rw-r--r-- | src/gui/buysell.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/buysell.cpp b/src/gui/buysell.cpp index e6dc7c1f..04a27b8c 100644 --- a/src/gui/buysell.cpp +++ b/src/gui/buysell.cpp @@ -60,16 +60,16 @@ void BuySellDialog::logic() { Window::logic(); - if (isVisible() && !current_npc) { + if (isVisible() && !current_npc) setVisible(false); - } } void BuySellDialog::setVisible(bool visible) { Window::setVisible(visible); - if (visible) requestFocus(); + if (visible) + requestFocus(); } void BuySellDialog::action(const gcn::ActionEvent &event) |