From 277cf45646ec28b2cbde7b4edc1a51d82e301fd8 Mon Sep 17 00:00:00 2001 From: Justin Scofield Date: Mon, 20 Jun 2022 09:52:09 -0400 Subject: [PATCH] remove unused open recent menu item --- src/application/Editor/editor.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/application/Editor/editor.cc b/src/application/Editor/editor.cc index cdfca382..3aded6dc 100644 --- a/src/application/Editor/editor.cc +++ b/src/application/Editor/editor.cc @@ -150,10 +150,6 @@ void Editor::DrawFileMenu() const { ImGuiFileDialog::Instance()->OpenDialog("ChooseFileDlgKey", "Open ROM", ".sfc,.smc", "."); } - if (ImGui::BeginMenu("Open Recent")) { - ImGui::MenuItem("alttp.sfc"); - ImGui::EndMenu(); - } if (ImGui::MenuItem("Save", "Ctrl+S")) { // TODO: Implement this }