mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-09 04:09:12 +00:00
Resolving failed dotnet whitespace format check
This commit is contained in:
parent
26f742c904
commit
55e6e9e946
4 changed files with 7 additions and 11 deletions
|
@ -56,7 +56,6 @@ namespace Ryujinx.UI.Windows
|
|||
[GUI] RadioButton _hideCursorNever;
|
||||
[GUI] RadioButton _hideCursorOnIdle;
|
||||
[GUI] RadioButton _hideCursorAlways;
|
||||
[GUI] Entry _cursorHideIdleTime;
|
||||
[GUI] CheckButton _vSyncToggle;
|
||||
[GUI] CheckButton _shaderCacheToggle;
|
||||
[GUI] CheckButton _textureRecompressionToggle;
|
||||
|
@ -233,7 +232,6 @@ namespace Ryujinx.UI.Windows
|
|||
|
||||
switch (ConfigurationState.Instance.HideCursor.Value)
|
||||
{
|
||||
|
||||
case HideCursorMode.Never:
|
||||
_hideCursorNever.Click();
|
||||
break;
|
||||
|
@ -243,7 +241,6 @@ namespace Ryujinx.UI.Windows
|
|||
case HideCursorMode.Always:
|
||||
_hideCursorAlways.Click();
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
if (ConfigurationState.Instance.Graphics.EnableVsync)
|
||||
|
@ -643,7 +640,6 @@ namespace Ryujinx.UI.Windows
|
|||
ConfigurationState.Instance.System.IgnoreMissingServices.Value = _ignoreToggle.Active;
|
||||
ConfigurationState.Instance.Hid.EnableKeyboard.Value = _directKeyboardAccess.Active;
|
||||
ConfigurationState.Instance.Hid.EnableMouse.Value = _directMouseAccess.Active;
|
||||
ConfigurationState.Instance.CursorHideIdleTime.Value = int.Parse(_cursorHideIdleTime.Text);
|
||||
ConfigurationState.Instance.UI.EnableCustomTheme.Value = _custThemeToggle.Active;
|
||||
ConfigurationState.Instance.System.Language.Value = Enum.Parse<Language>(_systemLanguageSelect.ActiveId);
|
||||
ConfigurationState.Instance.System.Region.Value = Enum.Parse<Common.Configuration.System.Region>(_systemRegionSelect.ActiveId);
|
||||
|
|
|
@ -168,7 +168,7 @@ namespace Ryujinx.UI.Common.Configuration
|
|||
public HideCursorMode HideCursor { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Amount of seconds needed by the mouse to be spent idle for cursor to hide.
|
||||
/// Amount of seconds needed to be spent idle to hide cursor
|
||||
/// </summary>
|
||||
public int CursorHideIdleTime { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue