mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-01 12:46:25 +02:00
UI: Option to automatically Hide UI when game launches (#462)
Quality of life feature Similar in function to the "Start Games in Fullscreen" toggle For users who want to run games in windowed/non-fullscreen mode with menu UI hidden, this eliminates the need to always click "Hide UI"
This commit is contained in:
parent
3974739ed3
commit
11531dacb6
8 changed files with 84 additions and 3 deletions
|
@ -125,6 +125,7 @@ namespace Ryujinx.Ava.Utilities.Configuration
|
|||
ApplicationSort = UI.ApplicationSort,
|
||||
IsAscendingOrder = UI.IsAscendingOrder,
|
||||
StartFullscreen = UI.StartFullscreen,
|
||||
StartNoUI = UI.StartNoUI,
|
||||
ShowConsole = UI.ShowConsole,
|
||||
EnableKeyboard = Hid.EnableKeyboard,
|
||||
EnableMouse = Hid.EnableMouse,
|
||||
|
@ -233,6 +234,7 @@ namespace Ryujinx.Ava.Utilities.Configuration
|
|||
UI.ApplicationSort.Value = 0;
|
||||
UI.IsAscendingOrder.Value = true;
|
||||
UI.StartFullscreen.Value = false;
|
||||
UI.StartNoUI.Value = false;
|
||||
UI.ShowConsole.Value = true;
|
||||
UI.WindowStartup.WindowSizeWidth.Value = 1280;
|
||||
UI.WindowStartup.WindowSizeHeight.Value = 760;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue