Compare commits

..

No commits in common. "fe7ed25d7429e0546b97fea6c89e627853c669e3" and "26ecd2a90df5784e3963412ceff89751eb3bd81e" have entirely different histories.

2 changed files with 9 additions and 7 deletions

View File

@ -49,19 +49,19 @@ function Padding:setDirty(fullInvalidate)
end
function Padding:getPaddingLeft()
return self.left or 0
return self.left
end
function Padding:getPaddingRight()
return self.right or 0
return self.right
end
function Padding:getPaddingTop()
return self.top or 0
return self.top
end
function Padding:getPaddingBottom()
return self.bottom or 0
return self.bottom
end
local function compareSet(value, default, didChange)

View File

@ -571,11 +571,13 @@ local PAGES = {
bindRequestButton(1)
bindRequestButton(5)
local stuffContainer = List:new{
local stuffContainer = Container:new{
[Children:getId()] = {
paddedTitle,
paddedRequestCount
paddedTitle
},
width = state.width,
height = state.height,
parent = state.monitor,
onClick = function(e, x, y, s)
state:setPage("GROUP_DETAIL", group)
return true