From d51f2499d519f0983c48c388e5a8d1d2b38fc5d1 Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Sat, 6 Sep 2014 10:47:58 +0200 Subject: [PATCH] For some reason the fill element was screwed up resulting in the battery icon not reflect the battery percentage properly --- components/workspace/BatteryIcon.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/workspace/BatteryIcon.qml b/components/workspace/BatteryIcon.qml index a057d5d19..fbbf2af77 100644 --- a/components/workspace/BatteryIcon.qml +++ b/components/workspace/BatteryIcon.qml @@ -74,9 +74,9 @@ Item { } else if (p >= 85) { return "Fill90"; } else if (p >= 75) { - return "Fill90"; - } else if (p >= 65) { return "Fill80"; + } else if (p >= 65) { + return "Fill70"; } else if (p >= 55) { return "Fill60"; } else if (p >= 45) {