From dce44862c64f50411a4f09713382b60a0e904d92 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 2 May 2024 16:12:51 +0200 Subject: editor: silence unhandled event message on modifier keypress --- editor/update.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'editor/update.cpp') diff --git a/editor/update.cpp b/editor/update.cpp index 2311d478..d90023b7 100644 --- a/editor/update.cpp +++ b/editor/update.cpp @@ -178,6 +178,8 @@ void app::do_key(key k, int mods) if (k >= key_NO_REPEAT) fm_warn("unhandled key: '%zu'", size_t(k)); return; + case key_noop: + return; case key_rotate_tile: return do_rotate(false); case key_emit_timestamp: -- cgit v1.2.3