diff --git a/itemcontroller.lua b/itemcontroller.lua index 2ab6f75..e493a22 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -529,16 +529,19 @@ local PAGES = { -- Set dynamic states for elements sortButton:setText("<"..tostring(pageState.sortMode)..">") local totalCountStr = tostring(totalCount) - local emptyCountStr = tostring(emptyCount) + local availCount = totalCount - emptyCount + local availCountStr = tostring(availCount) + local storageSat = availCountStr / totalCount storageSatProgress:setText( - emptyCountStr.. - (" "):rep(math.max(0, math.floor(state.width / 2) - #emptyCountStr - 1)).. + (availCountStr).. + (" "):rep(math.max(0, math.floor(state.width / 2) - #availCountStr - 1)).. "/".. (" "):rep(math.max(0, math.ceil(state.width / 2) - #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 for i=1,groupEntryListBudget do