mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-27 08:15:33 +01:00
Merge pull request #6030 from spycrab/qt_menu_reg
Qt: Fix Wii Disc options being disabled while core is running
This commit is contained in:
commit
336a185706
@ -185,10 +185,10 @@ void GameList::ShowContextMenu(const QPoint&)
|
|||||||
|
|
||||||
if (platform == DiscIO::Platform::WII_DISC)
|
if (platform == DiscIO::Platform::WII_DISC)
|
||||||
{
|
{
|
||||||
AddAction(menu, tr("Perform System Update"), this, [this] {
|
auto* perform_disc_update = AddAction(menu, tr("Perform System Update"), this, [this] {
|
||||||
WiiUpdate::PerformDiscUpdate(GetSelectedGame()->GetFilePath().toStdString(), this);
|
WiiUpdate::PerformDiscUpdate(GetSelectedGame()->GetFilePath().toStdString(), this);
|
||||||
});
|
});
|
||||||
menu->setEnabled(!Core::IsRunning() || !SConfig::GetInstance().bWii);
|
perform_disc_update->setEnabled(!Core::IsRunning() || !SConfig::GetInstance().bWii);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (platform == DiscIO::Platform::WII_WAD)
|
if (platform == DiscIO::Platform::WII_WAD)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user