1
0
mirror of https://github.com/rad4day/Waybar.git synced 2023-12-21 10:22:59 +01:00

Fixed percentage not getting rounded

This commit is contained in:
Erik Reider 2022-03-15 23:03:13 +01:00
parent 6eb187a23e
commit 136b47ce0d

@ -177,7 +177,7 @@ auto UPower::update() -> void {
// Set percentage
std::string percent_string =
displayDeviceValid ? std::to_string(int(percentage) + 0.5) + "%" : "";
displayDeviceValid ? std::to_string(int(percentage + 0.5)) + "%" : "";
label_.set_text(percent_string);
// Set icon