X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/95bfd958bda8955ac81277c78e5627c926154f39..6d99eb3e379fc5cdb835f9a87f92b612ec58dd1c:/wxPython/demo/SpinButton.py diff --git a/wxPython/demo/SpinButton.py b/wxPython/demo/SpinButton.py index eb5504f006..12fb117f1a 100644 --- a/wxPython/demo/SpinButton.py +++ b/wxPython/demo/SpinButton.py @@ -17,8 +17,12 @@ class TestPanel(wx.Panel): self.text = wx.TextCtrl(self, -1, "1", (30, 50), (60, -1)) h = self.text.GetSize().height + w = self.text.GetSize().width + self.text.GetPosition().x + 2 - self.spin = wx.SpinButton(self, -1, (92, 50), (h, h), wx.SP_VERTICAL) + self.spin = wx.SpinButton(self, -1, + (w, 50), + (h*2/3, h), + wx.SP_VERTICAL) self.spin.SetRange(1, 100) self.spin.SetValue(1) @@ -54,4 +58,4 @@ range is supported. if __name__ == '__main__': import sys,os import run - run.main(['', os.path.basename(sys.argv[0])]) + run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])