Compare commits
2 Commits
b5fd24740b
...
d294355a73
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d294355a73 | ||
![]() |
a0a7c96093 |
@ -10,7 +10,7 @@ function TextProgress:setProgress(progress)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function TextProgress:draw()
|
function TextProgress:draw()
|
||||||
getmetatable(getmetatable(self)).draw(self)
|
getmetatable(getmetatable(getmetatable(self))).draw(self)
|
||||||
local text = self:getText()
|
local text = self:getText()
|
||||||
if #text == 0 then
|
if #text == 0 then
|
||||||
return
|
return
|
||||||
|
@ -529,16 +529,19 @@ local PAGES = {
|
|||||||
-- Set dynamic states for elements
|
-- Set dynamic states for elements
|
||||||
sortButton:setText("<"..tostring(pageState.sortMode)..">")
|
sortButton:setText("<"..tostring(pageState.sortMode)..">")
|
||||||
local totalCountStr = tostring(totalCount)
|
local totalCountStr = tostring(totalCount)
|
||||||
local emptyCountStr = tostring(emptyCount)
|
local availCount = totalCount - emptyCount
|
||||||
|
local availCountStr = tostring(availCount)
|
||||||
|
local storageSat = availCountStr / totalCount
|
||||||
|
|
||||||
storageSatProgress:setText(
|
storageSatProgress:setText(
|
||||||
emptyCountStr..
|
(availCountStr)..
|
||||||
(" "):rep(math.max(0, math.floor(state.width / 2) - #emptyCountStr - 1))..
|
(" "):rep(math.max(0, math.floor(state.width / 2) - #availCountStr - 1))..
|
||||||
"/"..
|
"/"..
|
||||||
(" "):rep(math.max(0, math.ceil(state.width / 2) - #totalCountStr))..
|
(" "):rep(math.max(0, math.ceil(state.width / 2) - #totalCountStr))..
|
||||||
totalCountStr
|
totalCountStr
|
||||||
)
|
)
|
||||||
storageSatProgress:setProgress(emptyCount / totalCount)
|
storageSatProgress:setProgress(storageSat)
|
||||||
|
storageSatProgress:setFgColor((storageSat <= 0.33 and colors.green) or (storageSat <= 0.66 and colors.orange) or colors.red)
|
||||||
|
|
||||||
local basePageIndex = (pageState.currentPage - 1) * groupEntryListBudget
|
local basePageIndex = (pageState.currentPage - 1) * groupEntryListBudget
|
||||||
for i=1,groupEntryListBudget do
|
for i=1,groupEntryListBudget do
|
||||||
|
Loading…
x
Reference in New Issue
Block a user