diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-03 10:10:09 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-03 10:59:44 +0100 |
commit | 15198214ef081e1d59d4f0e13ad9ef6c6463885d (patch) | |
tree | a012cd1824b64a43611680cd608131b0f4329558 /editor/events.cpp | |
parent | 65ce220d95c50b0006ab4282604ea782cc4d0e90 (diff) |
editor: prepare for making a screencast
Diffstat (limited to 'editor/events.cpp')
-rw-r--r-- | editor/events.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/events.cpp b/editor/events.cpp index 56d35bf9..426acac4 100644 --- a/editor/events.cpp +++ b/editor/events.cpp @@ -129,6 +129,7 @@ auto app::resolve_keybinding(int k_, int mods_) const -> std::tuple<key, int> case SDLK_F5: return { key_quicksave, mods }; case SDLK_F9: return { key_quickload, mods }; case SDLK_q | CTRL: return { key_quit, mods }; + case SDLK_n | CTRL: return { key_new_file, mods }; } } } |