From 644a83941ca887196d68a7caa5edac07ef338330 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Wed, 7 Feb 2024 08:08:43 -0500 Subject: [PATCH] GUI: remove command palette entry in window --- src/gui/gui.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 8babeec8a..cb385022b 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -4391,8 +4391,6 @@ bool FurnaceGUI::loop() { ImGui::EndMenu(); } if (ImGui::BeginMenu(settings.capitalMenuBar?"Window":"window")) { - if (ImGui::MenuItem("command palette",BIND_FOR(GUI_ACTION_COMMAND_PALETTE))) - displayPalette=true; if (ImGui::MenuItem("song information",BIND_FOR(GUI_ACTION_WINDOW_SONG_INFO),songInfoOpen)) songInfoOpen=!songInfoOpen; if (ImGui::MenuItem("subsongs",BIND_FOR(GUI_ACTION_WINDOW_SUBSONGS),subSongsOpen)) subSongsOpen=!subSongsOpen; if (ImGui::MenuItem("speed",BIND_FOR(GUI_ACTION_WINDOW_SPEED),speedOpen)) speedOpen=!speedOpen;