summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorewewukek <ewewukek@gmail.com>2024-04-02 08:18:17 +0300
committerewewukek <ewewukek@gmail.com>2024-04-02 08:18:17 +0300
commit21e3230244dae0da04571c405d075bddc87bdb89 (patch)
tree43c6af543461fde05ad0f3c34a89c82a15ad582a /src/gui
parent4b049200df42e6078d8ff2ae589f09c49ab9647d (diff)
downloadmanaverse-21e3230244dae0da04571c405d075bddc87bdb89.tar.gz
manaverse-21e3230244dae0da04571c405d075bddc87bdb89.tar.bz2
manaverse-21e3230244dae0da04571c405d075bddc87bdb89.tar.xz
manaverse-21e3230244dae0da04571c405d075bddc87bdb89.zip
Consume input event in QuitDialog instead of relying on a hack
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/windows/quitdialog.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/windows/quitdialog.cpp b/src/gui/windows/quitdialog.cpp
index 66d330af9..7be0a08f9 100644
--- a/src/gui/windows/quitdialog.cpp
+++ b/src/gui/windows/quitdialog.cpp
@@ -210,6 +210,7 @@ void QuitDialog::keyPressed(KeyEvent &event)
{
const InputActionT actionId = event.getActionId();
int dir = 0;
+ bool consume = true;
PRAGMA45(GCC diagnostic push)
PRAGMA45(GCC diagnostic ignored "-Wswitch-enum")
@@ -229,10 +230,14 @@ void QuitDialog::keyPressed(KeyEvent &event)
dir = 1;
break;
default:
+ consume = false;
break;
}
PRAGMA45(GCC diagnostic pop)
+ if (consume)
+ event.consume();
+
if (dir != 0)
{
STD_VECTOR<RadioButton*>::const_iterator it = mOptions.begin();