summaryrefslogtreecommitdiffstats
path: root/client/application.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/application.cpp')
-rw-r--r--client/application.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/client/application.cpp b/client/application.cpp
index 6113f509..45eb457a 100644
--- a/client/application.cpp
+++ b/client/application.cpp
@@ -1225,10 +1225,12 @@ void Application::on_key_down(RedKey key)
}
}
- int command = get_hotkeys_commnad();
- if (command != APP_CMD_INVALID) {
- do_command(command);
- return;
+ if (!_sticky_info.sticky_mode) {
+ int command = get_hotkeys_commnad();
+ if (command != APP_CMD_INVALID) {
+ do_command(command);
+ return;
+ }
}
#ifdef WIN32