From dbb3d7c67b51f157bc993987068786dc2e6140b6 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 8 Oct 2025 13:16:25 +1100 Subject: internal: fix bat charge state Counts fully charged and pending charge as charging, same as prior to 90c051cf --- modules/lock/Fetch.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/lock') diff --git a/modules/lock/Fetch.qml b/modules/lock/Fetch.qml index 021f084..0e64343 100644 --- a/modules/lock/Fetch.qml +++ b/modules/lock/Fetch.qml @@ -114,7 +114,7 @@ ColumnLayout { active: UPower.displayDevice.isLaptopBattery sourceComponent: FetchText { - text: `BATT: ${UPower.displayDevice.state === UPowerDeviceState.Charging ? "(+) " : ""}${Math.round(UPower.displayDevice.percentage * 100)}%` + text: `BATT: ${[UPowerDeviceState.Charging, UPowerDeviceState.FullyCharged, UPowerDeviceState.PendingCharge].includes(UPower.displayDevice.state) ? "(+) " : ""}${Math.round(UPower.displayDevice.percentage * 100)}%` } } } -- cgit v1.2.3-freya