From 12c1a60798a650fb13d2d17e6cbc50ea536e5025 Mon Sep 17 00:00:00 2001 From: "Tsunami014 (Max)" Date: Mon, 16 Dec 2024 11:28:56 +1100 Subject: [PATCH] =?UTF-8?q?fix(main):=20=F0=9F=90=9B=20Fixed=20a=20small?= =?UTF-8?q?=20bug=20with=20the=20last=20commit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- demos.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demos.py b/demos.py index 81bcfc7..6004006 100644 --- a/demos.py +++ b/demos.py @@ -482,9 +482,9 @@ def _LoadUI(self): self.offset = len(topF['Main']) topF['Main'].extend([ GUI.Text(topF, RTOP, 'Top'), - GUI.NumInputBox(topF, RTOP, 100, GO.RHEIGHT, empty=1, min=0, max=2, placeholdOnNum=None, decimals=8), + GUI.NumInputBox(topF, RTOP, 100, GO.RHEIGHT, empty=1, start=None, min=0, max=2, placeholdOnNum=None, decimals=8), GUI.Text(topF, RTOP, 'Bottom'), - GUI.NumInputBox(topF, RTOP, 100, GO.RHEIGHT, empty=-1, min=-1, max=0, placeholdOnNum=None, decimals=8), + GUI.NumInputBox(topF, RTOP, 100, GO.RHEIGHT, empty=-1, start=None, min=-1, max=0, placeholdOnNum=None, decimals=8), ]) topF['Main'].append(GUI.Text(topF, GO.PCTOP, 'INPUT IMAGE', font=GO.FTITLE))