Fix bounds check on request buttons

This commit is contained in:
Gabriel Tofvesson 2024-10-12 04:59:04 +02:00
parent 2e622295b8
commit 5da99116ce
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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