This commit is contained in:
kepler155c@gmail.com
2019-02-17 06:27:43 -05:00
parent aabfea6e19
commit 20bb3d831f
2 changed files with 9 additions and 6 deletions

View File

@@ -130,6 +130,7 @@ local function createPage(node)
{ heading = 'Size', key = 'size', width = 5 },
{ heading = 'Used', key = 'used', width = 5 },
{ heading = 'Perc', key = 'perc', width = 5 },
-- TODO: add % to each number
},
sortColumn = 'name',
},
@@ -335,7 +336,7 @@ Unlocked Slots : %d of %d (%d%%)
self.unlocked.value = percent
self.unlockedLabel.value = string.format('Unlocked Usage: %s%% (%s of %s slots)',
percent, stats.usedUnlockedSlots, stats.usedSlots)
percent, stats.usedUnlockedSlots, stats.unlockedSlots)
UI.Tab.draw(self)
end