mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
fix(battery): change comparison expr. to assignment
This commit is contained in:
parent
22bf0b161a
commit
380fc58f3c
@ -95,7 +95,7 @@ const std::tuple<uint8_t, uint32_t, std::string> waybar::modules::Battery::getIn
|
||||
}
|
||||
uint16_t capacity = total / batteries_.size();
|
||||
if (status == "Charging" && total_current != 0) {
|
||||
status == "Plugged";
|
||||
status = "Plugged";
|
||||
}
|
||||
return {capacity, total_current, status};
|
||||
} catch (const std::exception& e) {
|
||||
|
Loading…
Reference in New Issue
Block a user