From c3a08f865387918fd7c5bad61e7cb06e56221556 Mon Sep 17 00:00:00 2001 From: spycrab Date: Sun, 10 Sep 2017 06:43:29 +0200 Subject: [PATCH] Qt: Fix "Load Wii System Menu" being in the wrong place --- Source/Core/DolphinQt2/MenuBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/MenuBar.cpp b/Source/Core/DolphinQt2/MenuBar.cpp index d5f31a37b7..079dc6b71c 100644 --- a/Source/Core/DolphinQt2/MenuBar.cpp +++ b/Source/Core/DolphinQt2/MenuBar.cpp @@ -133,7 +133,7 @@ void MenuBar::AddToolsMenu() // Label will be set by a NANDRefresh later m_boot_sysmenu = - AddAction(gc_ipl, QStringLiteral(""), this, [this] { emit BootWiiSystemMenu(); }); + AddAction(tools_menu, QStringLiteral(""), this, [this] { emit BootWiiSystemMenu(); }); m_import_backup = AddAction(gc_ipl, tr("Import BootMii NAND Backup..."), this, [this] { emit ImportNANDBackup(); });