diff options
author | TSRBerry <20988865+TSRBerry@users.noreply.github.com> | 2023-05-02 03:29:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-02 03:29:47 +0200 |
commit | dd574146fb5f05c1c0a469a4ad4a20c46bb37d74 (patch) | |
tree | 581cf26bcc2a5a31da00a66fd3255cfd489faced /src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs | |
parent | 2c94ac455ead867aac0a7a689a55d814a8bcc0da (diff) |
Add hide-cursor command line argument & always hide cursor option (#4613)1.1.743
* Add hide-cursor command line argument
* gtk: Adjust SettingsWindow for hide cursor options
* ava: Adjust SettingsWindow for hide cursor options
* ava: Add override check for HideCursor arg
* Remove copy&paste sins
* ava: Leave a little more room between the options
* gtk: Fix hide cursor issues
* ava: Only hide cursor if it's within the embedded window
Diffstat (limited to 'src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs')
-rw-r--r-- | src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs b/src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs index 3168766b..f0489915 100644 --- a/src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs +++ b/src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs @@ -162,9 +162,9 @@ namespace Ryujinx.Ui.Common.Configuration public bool ShowConfirmExit { get; set; } /// <summary> - /// Hide Cursor on Idle + /// Whether to hide cursor on idle, always or never /// </summary> - public bool HideCursorOnIdle { get; set; } + public HideCursorMode HideCursor { get; set; } /// <summary> /// Enables or disables Vertical Sync @@ -395,4 +395,4 @@ namespace Ryujinx.Ui.Common.Configuration JsonHelper.SerializeToFile(path, this, ConfigurationFileFormatSettings.SerializerContext.ConfigurationFileFormat); } } -} +}
\ No newline at end of file |