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

Commit ad1d4a9b authored by Sven Dawitz's avatar Sven Dawitz
Browse files

Fixed issue 2846: Pattern lockscreen displays %d%% instead of bat level

Change-Id: Ia5886718336457733645ca816cf1b3a4aa407bd4
parent 533fe710
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -312,7 +312,7 @@ class PatternUnlockScreen extends LinearLayoutWithDefaultTouchRecepient
                  mStatus1.setText(getContext().getString(R.string.lockscreen_plugged_in, mBatteryLevel));
              }
            } else {
                mStatus1.setText(getContext().getString(R.string.lockscreen_low_battery));
                mStatus1.setText(getContext().getString(R.string.lockscreen_low_battery, mBatteryLevel));
            }
            mStatus1.setCompoundDrawablesWithIntrinsicBounds(R.drawable.ic_lock_idle_charging, 0, 0, 0);