diff --git a/app/Helpers/ClamshellModeControl.cs b/app/Helpers/ClamshellModeControl.cs index 3115a44a..b5a900ce 100644 --- a/app/Helpers/ClamshellModeControl.cs +++ b/app/Helpers/ClamshellModeControl.cs @@ -39,7 +39,7 @@ namespace GHelper.Helpers return SystemInformation.PowerStatus.PowerLineStatus == PowerLineStatus.Online; } - public bool IsInClamshellMode() + public bool IsInClamshellReady() { return IsExternalDisplayConnected() && IsChargerConnected(); } @@ -51,7 +51,7 @@ namespace GHelper.Helpers return; } - if (IsInClamshellMode()) + if (IsInClamshellReady()) { EnableClamshellMode(); }