summaryrefslogtreecommitdiffhomepage
path: root/editor
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-03-03 22:41:58 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-03-03 22:42:08 +0100
commit297b4344bef3d5d2b167ac81f73a1768b4d2305d (patch)
treec17a80adb41f4c690ac7708ec115b24f8497cbee /editor
parenta6fc3e36dcffe8b42bffa0af349ff7424bdf38c4 (diff)
editor/imgui: "edit" -> "editor" in main menu
Diffstat (limited to 'editor')
-rw-r--r--editor/imgui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/imgui.cpp b/editor/imgui.cpp
index 6a700c33..371eed80 100644
--- a/editor/imgui.cpp
+++ b/editor/imgui.cpp
@@ -46,7 +46,7 @@ float app::draw_main_menu()
else if (do_quit)
do_key(key_quit, kmod_none);
}
- if (auto b = begin_menu("Edit"))
+ if (auto b = begin_menu("Editor"))
{
auto mode = _editor.mode();
using m = editor_mode;