Add more request buttons

This commit is contained in:
Gabriel Tofvesson 2024-11-14 03:37:09 +00:00
parent d45d2acd95
commit 3ef0bd371d

View File

@ -894,6 +894,8 @@ local PAGES = {
element = List:new{ element = List:new{
[Orientation:getId()] = Orientation.HORIZONTAL, [Orientation:getId()] = Orientation.HORIZONTAL,
[Children:getId()] = { [Children:getId()] = {
makeRequestButton(-64),
Element:new{ width = 1 },
makeRequestButton(-16), makeRequestButton(-16),
Element:new{ width = 1 }, Element:new{ width = 1 },
makeRequestButton(-8), makeRequestButton(-8),
@ -905,6 +907,8 @@ local PAGES = {
makeRequestButton(8), makeRequestButton(8),
Element:new{ width = 1 }, Element:new{ width = 1 },
makeRequestButton(16), makeRequestButton(16),
Element:new{ width = 1 },
makeRequestButton(64),
} }
} }
} }
@ -1015,12 +1019,14 @@ local PAGES = {
end) end)
end end
bindRequestButton(-64)
bindRequestButton(-16) bindRequestButton(-16)
bindRequestButton(-8) bindRequestButton(-8)
bindRequestButton(-1) bindRequestButton(-1)
bindRequestButton(1) bindRequestButton(1)
bindRequestButton(8) bindRequestButton(8)
bindRequestButton(16) bindRequestButton(16)
bindRequestButton(64)
updateDisplayState() updateDisplayState()