mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-20 01:42:38 +02:00
Fixed percentage not getting rounded
This commit is contained in:
@@ -177,7 +177,7 @@ auto UPower::update() -> void {
|
|||||||
|
|
||||||
// Set percentage
|
// Set percentage
|
||||||
std::string percent_string =
|
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);
|
label_.set_text(percent_string);
|
||||||
|
|
||||||
// Set icon
|
// Set icon
|
||||||
|
Reference in New Issue
Block a user