From d294355a73dfe1348683995b6762dd7758104fed Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 26 Oct 2024 19:51:53 +0200 Subject: [PATCH] Show used space instead of empty --- itemcontroller.lua | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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