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()
|
||||
if current ~= text then
|
||||
self:setDirty()
|
||||
|
||||
|
||||
local needReload = #current ~= #text
|
||||
self.text = text
|
||||
if needReload then
|
||||
|
@ -560,7 +560,7 @@ local PAGES = {
|
||||
|
||||
dataRequestText:setText(requestText)
|
||||
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)
|
||||
}
|
||||
dataAvailableText:setText(availableText)
|
||||
@ -572,8 +572,8 @@ local PAGES = {
|
||||
local function bindRequestButton(increment)
|
||||
local id = increment > 0 and ("+"..tostring(increment)) or tostring(increment)
|
||||
paddedRequestCount:findById(id):setOnClick(function(e, x, y, s)
|
||||
local newValue = pageState.request + increment
|
||||
if newValue >= 0 and newValue <= group:getItemCount() then
|
||||
local newValue = math.max(0, math.min(pageState.request + increment, group:getItemCount()))
|
||||
if pageState.request ~= newValue then
|
||||
pageState.request = newValue
|
||||
updateDisplayState()
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user