Qt: Allow memory card editing from playlist context menu

This commit is contained in:
Connor McLaughlin
2020-12-02 00:56:31 +10:00
parent 0ea2ced46d
commit cd8f17dbd0
2 changed files with 28 additions and 28 deletions

View File

@ -538,11 +538,8 @@ void MainWindow::onGameListContextMenuRequested(const QPoint& point, const GameL
if (!m_emulation_running)
{
if (!entry->code.empty())
{
m_host_interface->populateGameListContextMenu(entry, this, &menu);
menu.addSeparator();
}
m_host_interface->populateGameListContextMenu(entry, this, &menu);
menu.addSeparator();
connect(menu.addAction(tr("Default Boot")), &QAction::triggered, [this, entry]() {
m_host_interface->bootSystem(std::make_shared<const SystemBootParameters>(entry->path));