Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4badcf21 authored by Altaf-Mahdi's avatar Altaf-Mahdi Committed by Gerrit Code Review
Browse files

SystemUI: fix keyguard charging text not showing

Change-Id: I154bce13eac84ed3a1fbaad508cbef6006b5dcd3
parent 1bd36e0d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -164,7 +164,7 @@ public class KeyguardIndicationController {
        public void onRefreshBatteryInfo(KeyguardUpdateMonitor.BatteryStatus status) {
            boolean isChargingOrFull = status.status == BatteryManager.BATTERY_STATUS_CHARGING
                    || status.status == BatteryManager.BATTERY_STATUS_FULL;
            //mPowerPluggedIn = status.isPluggedIn() && isChargingOrFull;
            mPowerPluggedIn = status.isPluggedIn() && isChargingOrFull;
            mPowerCharged = status.isCharged();
            updateIndication();
        }