Skip to content

Commit

Permalink
Change lower limit of SS to be -10 instead of -5
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed Oct 30, 2024
1 parent 376bda7 commit 2bb35a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/characterEditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ def __init__(self, parent, sec):
self.m_staticText1.Wrap(-1)
bSizer1.Add(self.m_staticText1, 1, wx.ALL | wx.EXPAND, 5)

self.floatSpin = FloatSpin(self, value=sec, min_val=-5.0, max_val=5.0, increment=0.1, digits=2, size=(-1, -1))
self.floatSpin = FloatSpin(self, value=sec, min_val=-10.0, max_val=5.0, increment=0.1, digits=2, size=(-1, -1))
bSizer1.Add(self.floatSpin, 0, wx.ALIGN_CENTER | wx.ALL, 5)

btnOk = wx.Button(self, wx.ID_OK)
Expand Down

0 comments on commit 2bb35a1

Please sign in to comment.