summaryrefslogtreecommitdiffhomepage
path: root/editor/imgui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/imgui.cpp')
-rw-r--r--editor/imgui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/imgui.cpp b/editor/imgui.cpp
index afa55485..53d39de8 100644
--- a/editor/imgui.cpp
+++ b/editor/imgui.cpp
@@ -42,7 +42,7 @@ float app::draw_main_menu()
ImGui::Separator();
#endif
bool do_quit = false;
- ImGui::MenuItem("menu_quit", "Ctrl+Q", &do_quit);
+ ImGui::MenuItem("Quit", "Ctrl+Q", &do_quit);
if (do_quit)
do_key(key_quit, kmod_none);
}