mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-09 12:19:12 +00:00
Merge branch 'cursorhideidletimesetting' of https://github.com/ProfOzpin/Ryujinx into cursorhideidletimesetting
This commit is contained in:
commit
8edc800f70
3 changed files with 3 additions and 2 deletions
|
@ -423,6 +423,7 @@ namespace Ryujinx.UI.Common.Configuration
|
|||
/// </summary>
|
||||
public ReactiveObject<List<InputConfig>> InputConfig { get; private set; }
|
||||
|
||||
|
||||
public HidSection()
|
||||
{
|
||||
EnableKeyboard = new ReactiveObject<bool>();
|
||||
|
@ -1545,7 +1546,7 @@ namespace Ryujinx.UI.Common.Configuration
|
|||
Hid.EnableMouse.Value = configurationFileFormat.EnableMouse;
|
||||
Hid.Hotkeys.Value = configurationFileFormat.Hotkeys;
|
||||
Hid.InputConfig.Value = configurationFileFormat.InputConfig;
|
||||
|
||||
|
||||
if (Hid.InputConfig.Value == null)
|
||||
{
|
||||
Hid.InputConfig.Value = new List<InputConfig>();
|
||||
|
|
|
@ -124,6 +124,7 @@ namespace Ryujinx.Ava
|
|||
public bool ScreenshotRequested { get; set; }
|
||||
|
||||
public AppHost(
|
||||
|
||||
RendererHost renderer,
|
||||
InputManager inputManager,
|
||||
string applicationPath,
|
||||
|
|
|
@ -408,7 +408,6 @@ namespace Ryujinx.Ava.UI.ViewModels
|
|||
ShowConfirmExit = config.ShowConfirmExit;
|
||||
HideCursor = (int)config.HideCursor.Value;
|
||||
CursorHideIdleTime = config.CursorHideIdleTime.Value;
|
||||
|
||||
GameDirectories.Clear();
|
||||
GameDirectories.AddRange(config.UI.GameDirs.Value);
|
||||
|
||||
|
|
Loading…
Reference in a new issue