mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
SteamController: Persist and expose in release Lizard{Buttons,Mouse}
This commit is contained in:
parent
17d6c72c8b
commit
ce18d088d6
|
|
@ -403,9 +403,7 @@ namespace SteamController
|
||||||
DS4Shortcuts = ProfilesSettings.DS4BackPanelSettings.Default,
|
DS4Shortcuts = ProfilesSettings.DS4BackPanelSettings.Default,
|
||||||
DS4Haptic = ProfilesSettings.HapticSettings.DS4,
|
DS4Haptic = ProfilesSettings.HapticSettings.DS4,
|
||||||
Application = Settings.Default,
|
Application = Settings.Default,
|
||||||
#if DEBUG
|
|
||||||
DEBUG = SettingsDebug.Default
|
DEBUG = SettingsDebug.Default
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,10 +14,18 @@ namespace SteamController
|
||||||
}
|
}
|
||||||
|
|
||||||
[Description("Use Lizard Buttons instead of emulated. This option is only for testing purposes.")]
|
[Description("Use Lizard Buttons instead of emulated. This option is only for testing purposes.")]
|
||||||
public bool LizardButtons { get; set; } = false;
|
public bool LizardButtons
|
||||||
|
{
|
||||||
|
get { return Get<bool>("LizardButtons", false); }
|
||||||
|
set { Set("LizardButtons", value); }
|
||||||
|
}
|
||||||
|
|
||||||
[Description("Use Lizard Mouse instead of emulated. This option is only for testing purposes.")]
|
[Description("Use Lizard Mouse instead of emulated. This option is only for testing purposes.")]
|
||||||
public bool LizardMouse { get; set; } = true;
|
public bool LizardMouse
|
||||||
|
{
|
||||||
|
get { return Get<bool>("LizardMouse", false); }
|
||||||
|
set { Set("LizardMouse", value); }
|
||||||
|
}
|
||||||
|
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue