summaryrefslogtreecommitdiffhomepage
path: root/editor/imgui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/imgui.cpp')
-rw-r--r--editor/imgui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/imgui.cpp b/editor/imgui.cpp
index 9f43eda1..f35f6329 100644
--- a/editor/imgui.cpp
+++ b/editor/imgui.cpp
@@ -58,11 +58,11 @@ float app::draw_main_menu()
ImGui::Separator();
ImGui::MenuItem("Quit", "Ctrl+Q", &do_quit);
if (do_new)
- do_key(key_new_file, kmod_none);
+ do_key(key_new_file);
else if (do_quickload)
- do_key(key_quickload, kmod_none);
+ do_key(key_quickload);
else if (do_quit)
- do_key(key_quit, kmod_none);
+ do_key(key_quit);
}
if (auto b = begin_menu("Editor"))
{