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:
parent
636ed4a48b
commit
5751b77688
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user