diff options
Diffstat (limited to 'editor/events.cpp')
-rw-r--r-- | editor/events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/events.cpp b/editor/events.cpp index 89bdf4a3..275ddf57 100644 --- a/editor/events.cpp +++ b/editor/events.cpp @@ -102,7 +102,7 @@ void app::on_mouse_scroll(const mouse_scroll_event& event) noexcept do_mouse_scroll((int)e.offset()[1]); } -auto app::resolve_keybinding(int k_, int mods_) const -> std::tuple<key, int> +auto app::resolve_keybinding(int k_, int mods_) -> std::tuple<key, int> { [[maybe_unused]] constexpr int CTRL = kmod_ctrl; [[maybe_unused]] constexpr int SHIFT = kmod_shift; |