From 4a103947ea0ad238cb3bbc7414f3fabc84d16446 Mon Sep 17 00:00:00 2001 From: scawful Date: Fri, 19 Jul 2024 20:47:43 -0400 Subject: [PATCH] move rom information to view menu --- src/app/editor/master_editor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/editor/master_editor.cc b/src/app/editor/master_editor.cc index 675e2d93..c300f7d4 100644 --- a/src/app/editor/master_editor.cc +++ b/src/app/editor/master_editor.cc @@ -594,8 +594,6 @@ void MasterEditor::DrawEditMenu() { MENU_ITEM2("Paste", "Ctrl+V") { status_ = current_editor_->Paste(); } Separator(); MENU_ITEM2("Find", "Ctrl+F") {} - Separator(); - MENU_ITEM("ROM Information") rom_info_ = true; ImGui::EndMenu(); } } @@ -643,6 +641,8 @@ void MasterEditor::DrawViewMenu() { MenuItem("Assembly Editor", nullptr, &show_asm_editor); MenuItem("Palette Editor", nullptr, &show_palette_editor); Separator(); + MENU_ITEM("ROM Information") rom_info_ = true; + Separator(); MenuItem("ImGui Demo", nullptr, &show_imgui_demo); MenuItem("ImGui Metrics", nullptr, &show_imgui_metrics); ImGui::EndMenu();