[ion] Change LED color when charging: yellow --> orange

This commit is contained in:
Émilie Feral
2019-04-11 10:15:49 +02:00
parent f123f1afaa
commit 3a57b2e7d2
3 changed files with 3 additions and 2 deletions

View File

@@ -147,7 +147,7 @@ void AppsContainer::suspend(bool checkIfPowerKeyReleased) {
void AppsContainer::updateLED() {
if (Ion::USB::isPlugged()) {
Ion::LED::setColor(Ion::Battery::isCharging() ? KDColorYellow : KDColorGreen);
Ion::LED::setColor(Ion::Battery::isCharging() ? KDColorOrange : KDColorGreen);
} else {
Ion::LED::setColor(KDColorBlack);
}