Skip to content

Commit

Permalink
fix(main): 🐛 Fixed a small bug with the last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsunami014 (Max) authored and Tsunami014 (Max) committed Dec 16, 2024
1 parent 3192b8f commit 12c1a60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demos.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 12c1a60

Please sign in to comment.