1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

GUI: followup to #7347

Show "Reboot" on current running game when there's no config.
This commit is contained in:
Eladash 2020-03-08 08:45:22 +02:00 committed by Ivan
parent 636ed4a48b
commit 5751b77688

View File

@ -948,7 +948,7 @@ void game_list_frame::ShowContextMenu(const QPoint &pos)
const bool is_current_running_game = (Emu.IsRunning() || Emu.IsPaused()) && current_game.serial == Emu.GetTitleID();
QAction* boot = new QAction(gameinfo->hasCustomConfig ? tr(is_current_running_game ? "&Reboot with global configuration" : "&Boot with global configuration") : tr("&Boot"));
QAction* boot = new QAction(gameinfo->hasCustomConfig ? tr(is_current_running_game ? "&Reboot with global configuration" : "&Boot with global configuration") : tr(is_current_running_game ? "&Reboot" : "&Boot"));
QFont font = boot->font();
font.setBold(true);