From f090d7df5c0b50ffa6f624d772db44e38bdbf241 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Thu, 1 Aug 2024 09:26:09 +0900 Subject: [PATCH] GuiMenu: fixed the ES-DE CONFIGURATIONS menu --- es-app/src/guis/GuiMenu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index 2f69e5fb0..19baad7f9 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -56,10 +56,10 @@ GuiMenu::GuiMenu() if (isFullUI) addEntry("SCRAPER", mMenuColorPrimary, true, [this] { openScraperOptions(); }); - addEntry("RETRODECK CONFIGURATOR", mMenuColorPrimary, false, [this] { openRetroDeckConfigurator(); }); + if (isFullUI) + addEntry("RETRODECK CONFIGURATOR", mMenuColorPrimary, false, [this] { openRetroDeckConfigurator(); }); if (isFullUI) - { addEntry("ES-DE CONFIGURATIONS", mMenuColorPrimary, true, [this] { auto configMenu = new GuiMenu(mWindow);