Qt: use correct menu icon for "Play last played game" on booting RPCS3

This commit is contained in:
Megamouse 2018-05-21 14:13:37 +02:00 committed by Ani
parent 598008868e
commit 31101b4828

View file

@ -152,6 +152,7 @@ void main_window::Init()
{
ui->sysPauseAct->setEnabled(true);
ui->sysPauseAct->setText(tr("&Start last played game\tCtrl+E"));
ui->sysPauseAct->setIcon(m_icon_play);
ui->toolbar_start->setToolTip(tr("Start last played game"));
ui->toolbar_start->setEnabled(true);
}
@ -385,7 +386,7 @@ void main_window::BootRsxCapture()
LOG_ERROR(GENERAL, "Capture Boot Failed");
else
LOG_SUCCESS(LOADER, "Capture Boot Success");
}
}
void main_window::InstallPkg(const QString& dropPath)
{