From efd0c5b07e01de2aa29ae80fbcfcd7dae5d679f7 Mon Sep 17 00:00:00 2001 From: Naim2000 Date: Fri, 11 Aug 2023 17:46:51 -0500 Subject: [PATCH] Disable "Install WAD" while emulation is running The "(Un)install to/from the NAND" options in the context menu for WAD files has always been disabled, don't know what happened to this one --- Source/Core/DolphinQt/MenuBar.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index 69f42c09d2..b809304737 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -1021,6 +1021,7 @@ void MenuBar::UpdateToolsMenu(bool emulation_started) m_ntscj_ipl->setEnabled(!emulation_started && File::Exists(Config::GetBootROMPath(JAP_DIR))); m_ntscu_ipl->setEnabled(!emulation_started && File::Exists(Config::GetBootROMPath(USA_DIR))); m_pal_ipl->setEnabled(!emulation_started && File::Exists(Config::GetBootROMPath(EUR_DIR))); + m_wad_install_action->setEnabled(!emulation_started); m_import_backup->setEnabled(!emulation_started); m_check_nand->setEnabled(!emulation_started);