aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-04-27 23:46:14 -0400
committerKen Moore <ken@ixsystems.com>2017-04-27 23:46:14 -0400
commit24a4facedae9326a3478466ab99869cf06d6e24d (patch)
tree1f6db412579a3ce031adebe437eec361f749e5e2 /src-qt5/core
parentGet more of the "local" file playback functional. Now it seems almost full-fe... (diff)
downloadlumina-24a4facedae9326a3478466ab99869cf06d6e24d.tar.gz
lumina-24a4facedae9326a3478466ab99869cf06d6e24d.tar.bz2
lumina-24a4facedae9326a3478466ab99869cf06d6e24d.zip
Fix up the battery icons when charging.
Diffstat (limited to 'src-qt5/core')
-rw-r--r--src-qt5/core/lumina-desktop/panel-plugins/battery/LBattery.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src-qt5/core/lumina-desktop/panel-plugins/battery/LBattery.cpp b/src-qt5/core/lumina-desktop/panel-plugins/battery/LBattery.cpp
index bdbdc42d..5e9d7a7f 100644
--- a/src-qt5/core/lumina-desktop/panel-plugins/battery/LBattery.cpp
+++ b/src-qt5/core/lumina-desktop/panel-plugins/battery/LBattery.cpp
@@ -61,13 +61,13 @@ void LBattery::updateBattery(bool force){
label->setPixmap( LXDG::findIcon("battery-charging-20", "battery-charging-caution").pixmap(label->size()) );
break;
case 11:
- label->setPixmap( LXDG::findIcon("battery-charging-040", "battery-charging-040").pixmap(label->size()) );
+ label->setPixmap( LXDG::findIcon("battery-charging-40", "battery-charging-040").pixmap(label->size()) );
break;
case 12:
- label->setPixmap( LXDG::findIcon("battery-charging-060", "battery-charging-060").pixmap(label->size()) );
+ label->setPixmap( LXDG::findIcon("battery-charging-60", "battery-charging-060").pixmap(label->size()) );
break;
case 13:
- label->setPixmap( LXDG::findIcon("battery-charging-080", "battery-charging-080").pixmap(label->size()) );
+ label->setPixmap( LXDG::findIcon("battery-charging-80", "battery-charging-080").pixmap(label->size()) );
break;
case 14:
label->setPixmap( LXDG::findIcon("battery-charging-100", "battery-charging").pixmap(label->size()) );
bgstack15