From 7f1f2eeae3a3794815fed496a32fcfed34f00ed2 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Thu, 14 Nov 2024 03:33:58 +0000 Subject: [PATCH] Increase increment/decrement buttons --- itemcontroller.lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 0139947..4897e5c 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -302,7 +302,7 @@ local PAGES = { } end - local ACTION_COUNT = 2 + local ACTION_COUNT = 3 local ACTION_INTERVAL = 5 local ACTION_SPACING = 1 @@ -894,13 +894,17 @@ local PAGES = { element = List:new{ [Orientation:getId()] = Orientation.HORIZONTAL, [Children:getId()] = { - makeRequestButton(-5), + makeRequestButton(-16), + Element:new{ width = 1 }, + makeRequestButton(-8), Element:new{ width = 1 }, makeRequestButton(-1), Element:new{ width = 2 }, makeRequestButton(1), Element:new{ width = 1 }, - makeRequestButton(5), + makeRequestButton(8), + Element:new{ width = 1 }, + makeRequestButton(16), } } }