From 6299acc5968e9e4eeaf4a10f1e0b11193b8d057f Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Wed, 22 Jan 2025 11:49:25 +0100 Subject: [PATCH] Charge limits for ProArt P16 --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index 2f6dd90e..a537f7a8 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -699,7 +699,7 @@ public static bool IsStopAC() public static bool IsChargeLimit6080() { - return ContainsModel("GA403U") || ContainsModel("GU605") || ContainsModel("GA605") || ContainsModel("GA503R") || (IsTUF() && !(ContainsModel("FX507Z") || ContainsModel("FA617"))); + return ContainsModel("H760") || ContainsModel("GA403U") || ContainsModel("GU605") || ContainsModel("GA605") || ContainsModel("GA503R") || (IsTUF() && !(ContainsModel("FX507Z") || ContainsModel("FA617"))); }