From 1c2980976fbf703c169b4e8c603d787ee54ccb7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Trzci=C5=84ski?= Date: Sat, 26 Nov 2022 23:52:48 +0100 Subject: [PATCH] Hide `Use Lizard Mouse/Buttons` as it does something different --- RELEASE.md | 1 + SteamController/Controller.cs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 0963d0e..48baa93 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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 diff --git a/SteamController/Controller.cs b/SteamController/Controller.cs index cee954a..a27c1fd 100644 --- a/SteamController/Controller.cs +++ b/SteamController/Controller.cs @@ -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;