Qt: Fix NAND import menu item parent
This commit is contained in:
parent
6e796a74fb
commit
291c99217e
|
@ -123,7 +123,7 @@ void MenuBar::AddToolsMenu()
|
||||||
// Label will be set by a NANDRefresh later
|
// Label will be set by a NANDRefresh later
|
||||||
m_boot_sysmenu =
|
m_boot_sysmenu =
|
||||||
AddAction(tools_menu, 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,
|
m_import_backup = AddAction(tools_menu, tr("Import BootMii NAND Backup..."), this,
|
||||||
[this] { emit ImportNANDBackup(); });
|
[this] { emit ImportNANDBackup(); });
|
||||||
m_check_nand = AddAction(tools_menu, tr("Check NAND..."), this, &MenuBar::CheckNAND);
|
m_check_nand = AddAction(tools_menu, tr("Check NAND..."), this, &MenuBar::CheckNAND);
|
||||||
m_extract_certificates = AddAction(tools_menu, tr("Extract Certificates from NAND"), this,
|
m_extract_certificates = AddAction(tools_menu, tr("Extract Certificates from NAND"), this,
|
||||||
|
|
Loading…
Reference in New Issue