mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-23 08:50:27 +01:00
Hide Use Lizard Mouse/Buttons as it does something different
This commit is contained in:
parent
9d9a9a4196
commit
1c2980976f
|
|
@ -8,6 +8,7 @@
|
|||
- Show notification on controller changed
|
||||
- Try to disable usage of Kernel Drivers (when FAN in Default, and OSD Kernel Drivers are disabled)
|
||||
to allow apps to work with Anti-Cheat detections
|
||||
- Hide `Use Lizard Mouse/Buttons` as it does something different than people are used to
|
||||
|
||||
## 0.4.x
|
||||
|
||||
|
|
|
|||
|
|
@ -66,19 +66,19 @@ namespace SteamController
|
|||
|
||||
contextMenu.Items.Add(new ToolStripSeparator());
|
||||
|
||||
#if DEBUG
|
||||
var lizardMouseItem = new ToolStripMenuItem("Use Lizard &Mouse");
|
||||
lizardMouseItem.Checked = DefaultGuideShortcutsProfile.SteamModeLizardMouse;
|
||||
lizardMouseItem.Click += delegate { DefaultGuideShortcutsProfile.SteamModeLizardMouse = !DefaultGuideShortcutsProfile.SteamModeLizardMouse; };
|
||||
contextMenu.Opening += delegate { lizardMouseItem.Checked = DefaultGuideShortcutsProfile.SteamModeLizardMouse; };
|
||||
contextMenu.Items.Add(lizardMouseItem);
|
||||
|
||||
var lizardButtonsItem = new ToolStripMenuItem("Use Lizard &Buttons");
|
||||
lizardButtonsItem.Checked = DefaultGuideShortcutsProfile.SteamModeLizardButtons;
|
||||
lizardButtonsItem.Click += delegate { DefaultGuideShortcutsProfile.SteamModeLizardButtons = !DefaultGuideShortcutsProfile.SteamModeLizardButtons; };
|
||||
contextMenu.Opening += delegate { lizardButtonsItem.Checked = DefaultGuideShortcutsProfile.SteamModeLizardButtons; };
|
||||
contextMenu.Items.Add(lizardButtonsItem);
|
||||
|
||||
contextMenu.Items.Add(new ToolStripSeparator());
|
||||
#endif
|
||||
|
||||
var steamDetectionItem = new ToolStripMenuItem("Auto-disable on &Steam");
|
||||
steamDetectionItem.Checked = Settings.Default.EnableSteamDetection;
|
||||
|
|
|
|||
Loading…
Reference in a new issue