diff --git a/Source/Core/DolphinQt2/GameList/GameList.cpp b/Source/Core/DolphinQt2/GameList/GameList.cpp index 269dd89627..3ab2b71e7e 100644 --- a/Source/Core/DolphinQt2/GameList/GameList.cpp +++ b/Source/Core/DolphinQt2/GameList/GameList.cpp @@ -171,7 +171,7 @@ void GameList::ShowContextMenu(const QPoint&) else if (blob_type == DiscIO::BlobType::PLAIN) AddAction(menu, tr("Compress ISO..."), this, &GameList::CompressISO); - QAction* change_disc = menu->addAction(tr("Change &Disc"), this, &GameList::ChangeDisc); + QAction* change_disc = AddAction(menu, tr("Change &Disc"), this, &GameList::ChangeDisc); connect(this, &GameList::EmulationStarted, change_disc, [change_disc] { change_disc->setEnabled(true); });