diff options
| author | Zephyron <zephyron@citron-emu.org> | 2025-01-20 17:14:46 +1000 |
|---|---|---|
| committer | Mike Lothian <mike@fireburn.co.uk> | 2025-05-11 12:18:02 +0100 |
| commit | 974dd4a7cf0ad92818fcddc3715e0ebcdadcad6a (patch) | |
| tree | 3775a81c57be94fec210ee6ef0e54f43f3d8f8b6 | |
| parent | 3189fe941a9a63895e9e33fc121a8f386bc0cc1d (diff) | |
ui: Add Save States menu stubs
Adds UI elements for future save state support:
- New "Save States" menu in the main menubar
- Save and Load action items with keyboard shortcuts
- No functionality implemented yet, just UI stubs
| -rw-r--r-- | src/yuzu/main.ui | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/yuzu/main.ui b/src/yuzu/main.ui index b2b5ecfb5..5130cc0b0 100644 --- a/src/yuzu/main.ui +++ b/src/yuzu/main.ui @@ -45,7 +45,7 @@ <x>0</x> <y>0</y> <width>1280</width> - <height>21</height> + <height>22</height> </rect> </property> <widget class="QMenu" name="menu_File"> @@ -190,12 +190,20 @@ <addaction name="separator"/> <addaction name="action_About"/> </widget> + <widget class="QMenu" name="menu_Save_States"> + <property name="title"> + <string>&Save States</string> + </property> + <addaction name="actionSave"/> + <addaction name="actionLoad"/> + </widget> <addaction name="menu_File"/> <addaction name="menu_Emulation"/> <addaction name="menu_View"/> <addaction name="menu_Tools"/> <addaction name="menu_Multiplayer"/> <addaction name="menu_Help"/> + <addaction name="menu_Save_States"/> </widget> <action name="action_Install_File_NAND"> <property name="enabled"> @@ -488,6 +496,16 @@ <string>Install Decryption Keys</string> </property> </action> + <action name="actionSave"> + <property name="text"> + <string>&Save</string> + </property> + </action> + <action name="actionLoad"> + <property name="text"> + <string>&Load</string> + </property> + </action> <action name="action_Load_Home_Menu"> <property name="text"> <string>Open Home Menu</string> |
