diff options
author | lat9nq <lat9nq@virginia.edu> | 2020-08-11 14:57:29 -0400 |
---|---|---|
committer | lat9nq <lat9nq@virginia.edu> | 2020-08-15 20:28:48 -0400 |
commit | 9f972b7d01ca9ac0b4f7d7b6ba6f81c999d4f694 (patch) | |
tree | 54f2ebed18e4b544c95d9a17392c3ad12aa5938e /src/yuzu/main.ui | |
parent | 2b601e86360ea47df5b3cb1a280177f428763837 (diff) |
main: Add an option to modify the currrent game's configuration
Creates a new entry in the Emulation menu called "Configure Current Game..." that is only available if a game is currently being executed in yuzu. When selected, it opens the game properties dialog for the current game.
Thanks to @BSoDGamingYT for reminding me to do this.
Diffstat (limited to 'src/yuzu/main.ui')
-rw-r--r-- | src/yuzu/main.ui | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/yuzu/main.ui b/src/yuzu/main.ui index c3a1d715e..87ea985d8 100644 --- a/src/yuzu/main.ui +++ b/src/yuzu/main.ui @@ -81,6 +81,7 @@ <addaction name="action_Restart"/> <addaction name="separator"/> <addaction name="action_Configure"/> + <addaction name="action_Configure_Current_Game"/> </widget> <widget class="QMenu" name="menu_View"> <property name="title"> @@ -287,6 +288,14 @@ <string>Capture Screenshot</string> </property> </action> + <action name="action_Configure_Current_Game"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="text"> + <string>Configure Current Game..</string> + </property> + </action> </widget> <resources/> <connections/> |