diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-03 08:19:25 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-03 08:26:56 +0100 |
commit | 65ce220d95c50b0006ab4282604ea782cc4d0e90 (patch) | |
tree | e7d065b972ef69a7ec0340bb35a7f6f634cdffde /editor/app.hpp | |
parent | 38b5c32b1037602068285dc3ad906cc7b94cdcb4 (diff) |
editor: don't queue up key_GLOBALs, ever
Diffstat (limited to 'editor/app.hpp')
-rw-r--r-- | editor/app.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/app.hpp b/editor/app.hpp index 8d4f0736..a2d036e4 100644 --- a/editor/app.hpp +++ b/editor/app.hpp @@ -109,8 +109,8 @@ private: static int get_key_modifiers(); void clear_keys(key min_inclusive, key max_exclusive); void clear_keys(); - void clear_non_global_keys() { clear_keys(key_noop, key_GLOBAL); } - void clear_non_repeated_keys() { clear_keys(key_NO_REPEAT, key_COUNT); } + void clear_non_global_keys(); + void clear_non_repeated_keys(); Containers::Pointer<floormat_main> M; ImGuiIntegration::Context _imgui{NoCreate}; |