diff options
author | Weblate <noreply@weblate.org> | 2017-08-03 13:47:59 +0000 |
---|---|---|
committer | Weblate <noreply@weblate.org> | 2017-08-03 13:47:59 +0000 |
commit | cf1c74e99d313864f8b55b9e55066cfaabf3e4e1 (patch) | |
tree | 76f5bbaba21be05b7cc0ac00bca2063fa63f3d59 /src-qt5/core/lumina-desktop/panel-plugins | |
parent | Translated using Weblate (Spanish) (diff) | |
parent | get basic user defined sound enabled (diff) | |
download | lumina-cf1c74e99d313864f8b55b9e55066cfaabf3e4e1.tar.gz lumina-cf1c74e99d313864f8b55b9e55066cfaabf3e4e1.tar.bz2 lumina-cf1c74e99d313864f8b55b9e55066cfaabf3e4e1.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src-qt5/core/lumina-desktop/panel-plugins')
-rw-r--r-- | src-qt5/core/lumina-desktop/panel-plugins/battery/LBattery.cpp | 6 |
1 files changed, 4 insertions, 2 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 5e9d7a7f..be5b8488 100644 --- a/src-qt5/core/lumina-desktop/panel-plugins/battery/LBattery.cpp +++ b/src-qt5/core/lumina-desktop/panel-plugins/battery/LBattery.cpp @@ -78,8 +78,10 @@ void LBattery::updateBattery(bool force){ } if(icon<iconOld && icon==0){ //Play some audio warning chime when - LSession::handle()->playAudioFile(LOS::LuminaShare()+"low-battery.ogg"); - } + QString sfile = LSession::handle()->sessionSettings()->value("audiofiles/batterylow", LOS::LuminaShare()+"low-battery.ogg").toString(); + LSession::handle()->playAudioFile(sfile); + } + if(icon==0){ label->setStyleSheet("QLabel{ background: red;}"); } else if(icon==14 && charge>98){ label->setStyleSheet("QLabel{ background: green;}"); } else{ label->setStyleSheet("QLabel{ background: transparent;}"); } |