Fix bounds check on request buttons
This commit is contained in:
parent
2e622295b8
commit
5da99116ce
@ -12,7 +12,7 @@ function Text:setText(text)
|
|||||||
local current = self:getText()
|
local current = self:getText()
|
||||||
if current ~= text then
|
if current ~= text then
|
||||||
self:setDirty()
|
self:setDirty()
|
||||||
|
|
||||||
local needReload = #current ~= #text
|
local needReload = #current ~= #text
|
||||||
self.text = text
|
self.text = text
|
||||||
if needReload then
|
if needReload then
|
||||||
|
@ -560,7 +560,7 @@ local PAGES = {
|
|||||||
|
|
||||||
dataRequestText:setText(requestText)
|
dataRequestText:setText(requestText)
|
||||||
dataDividerPad:setPadding{
|
dataDividerPad:setPadding{
|
||||||
left = math.ceil((state.width - 1 - (PADDING_RQC_H * 2) - #requestText - #availableText) / 2),
|
left = math.floor((state.width - 1 - (PADDING_RQC_H * 2) - #requestText - #availableText) / 2),
|
||||||
right = math.floor((state.width - 1 - (PADDING_RQC_H * 2) - #requestText - #availableText) / 2)
|
right = math.floor((state.width - 1 - (PADDING_RQC_H * 2) - #requestText - #availableText) / 2)
|
||||||
}
|
}
|
||||||
dataAvailableText:setText(availableText)
|
dataAvailableText:setText(availableText)
|
||||||
@ -572,8 +572,8 @@ local PAGES = {
|
|||||||
local function bindRequestButton(increment)
|
local function bindRequestButton(increment)
|
||||||
local id = increment > 0 and ("+"..tostring(increment)) or tostring(increment)
|
local id = increment > 0 and ("+"..tostring(increment)) or tostring(increment)
|
||||||
paddedRequestCount:findById(id):setOnClick(function(e, x, y, s)
|
paddedRequestCount:findById(id):setOnClick(function(e, x, y, s)
|
||||||
local newValue = pageState.request + increment
|
local newValue = math.max(0, math.min(pageState.request + increment, group:getItemCount()))
|
||||||
if newValue >= 0 and newValue <= group:getItemCount() then
|
if pageState.request ~= newValue then
|
||||||
pageState.request = newValue
|
pageState.request = newValue
|
||||||
updateDisplayState()
|
updateDisplayState()
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user