From ccb413b2e62196cda4d33f3ccacb52efb55aacaf Mon Sep 17 00:00:00 2001 From: IceStormNG Date: Wed, 26 Jul 2023 21:13:24 +0200 Subject: [PATCH] Clamshell mode is now properly off by default --- app/Helpers/ClamshellModeControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Helpers/ClamshellModeControl.cs b/app/Helpers/ClamshellModeControl.cs index d4fb59fc..89fdf00b 100644 --- a/app/Helpers/ClamshellModeControl.cs +++ b/app/Helpers/ClamshellModeControl.cs @@ -31,7 +31,7 @@ namespace GHelper.Helpers public bool IsClamshellEnabled() { - return AppConfig.Get("toggle_clamshell_mode") != 0; + return AppConfig.Is("toggle_clamshell_mode"); } public bool IsChargerConnected()