Compare commits

..

No commits in common. "d294355a73dfe1348683995b6762dd7758104fed" and "b5fd24740b26f9cccd5af67cdb25663fbcc755b7" have entirely different histories.

2 changed files with 5 additions and 8 deletions

View File

@ -10,7 +10,7 @@ function TextProgress:setProgress(progress)
end
function TextProgress:draw()
getmetatable(getmetatable(getmetatable(self))).draw(self)
getmetatable(getmetatable(self)).draw(self)
local text = self:getText()
if #text == 0 then
return

View File

@ -529,19 +529,16 @@ local PAGES = {
-- Set dynamic states for elements
sortButton:setText("<"..tostring(pageState.sortMode)..">")
local totalCountStr = tostring(totalCount)
local availCount = totalCount - emptyCount
local availCountStr = tostring(availCount)
local storageSat = availCountStr / totalCount
local emptyCountStr = tostring(emptyCount)
storageSatProgress:setText(
(availCountStr)..
(" "):rep(math.max(0, math.floor(state.width / 2) - #availCountStr - 1))..
emptyCountStr..
(" "):rep(math.max(0, math.floor(state.width / 2) - #emptyCountStr - 1))..
"/"..
(" "):rep(math.max(0, math.ceil(state.width / 2) - #totalCountStr))..
totalCountStr
)
storageSatProgress:setProgress(storageSat)
storageSatProgress:setFgColor((storageSat <= 0.33 and colors.green) or (storageSat <= 0.66 and colors.orange) or colors.red)
storageSatProgress:setProgress(emptyCount / totalCount)
local basePageIndex = (pageState.currentPage - 1) * groupEntryListBudget
for i=1,groupEntryListBudget do