Merge pull request #161 from aajjbb/batwidget-percentage-fix2

fixing small issue on previous commit issue
This commit is contained in:
Luke Bonham 2016-01-04 14:20:47 +01:00
commit d8944fd10b
1 changed files with 2 additions and 3 deletions

View File

@ -97,9 +97,8 @@ local function worker(args)
bat_now.time = string.format("%02d:%02d", hrs, min) bat_now.time = string.format("%02d:%02d", hrs, min)
local perc = first_line(bstr .. "/capacity") or (rem / tot) * 100 local perc = tonumber(first_line(bstr .. "/capacity")) or (rem / tot) * 100
local perc = (rem / tot) * 100
if perc <= 100 then if perc <= 100 then
bat_now.perc = string.format("%d", perc) bat_now.perc = string.format("%d", perc)
elseif perc > 100 then elseif perc > 100 then