X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8eca4fef106b8327e2e55636de3f68a511a4c392..42f8298f6f42d5d63bb3caf65682b7d9d9f8b702:/wxPython/demo/SpinCtrl.py diff --git a/wxPython/demo/SpinCtrl.py b/wxPython/demo/SpinCtrl.py index 23d20cb31f..327bc17441 100644 --- a/wxPython/demo/SpinCtrl.py +++ b/wxPython/demo/SpinCtrl.py @@ -10,7 +10,7 @@ class TestPanel(wx.Panel): self.count = 0 wx.StaticText(self, -1, "This example uses the wx.SpinCtrl control.", (45, 15)) - sc = wx.SpinCtrl(self, -1, "", (30, 50), (80, -1)) + sc = wx.SpinCtrl(self, -1, "", (30, 50)) sc.SetRange(1,100) sc.SetValue(5)