This commit is contained in:
Milan Vit 2024-11-30 20:02:26 +00:00 committed by GitHub
commit 5c6283d509
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ def battery(pl, format='{ac_state} {capacity:3.0%}', steps=5, gamify=False, full
ret = []
if gamify:
denom = int(steps)
numer = int(denom * capacity / 100)
numer = int(round(denom * capacity / 100.0, 0))
ret.append({
'contents': online if ac_powered else offline,
'draw_inner_divider': False,