Skip to content

Commit 2bb35a1

Browse files
committed
Change lower limit of SS to be -10 instead of -5
1 parent 376bda7 commit 2bb35a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/characterEditor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ def __init__(self, parent, sec):
918918
self.m_staticText1.Wrap(-1)
919919
bSizer1.Add(self.m_staticText1, 1, wx.ALL | wx.EXPAND, 5)
920920

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

924924
btnOk = wx.Button(self, wx.ID_OK)

0 commit comments

Comments
 (0)