]> git.saurik.com Git - wxWidgets.git/commitdiff
Use a better fixed size for the spin button
authorRobin Dunn <robin@alldunn.com>
Mon, 11 Oct 2004 22:16:06 +0000 (22:16 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 11 Oct 2004 22:16:06 +0000 (22:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29790 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/SpinButton.py

index f56f8048326e74f91272ce138cb42b8cf864cbbf..12fb117f1af3fa70f6b5188d346f44639cc4d5d2 100644 (file)
@@ -17,9 +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
+        w = self.text.GetSize().width + self.text.GetPosition().x + 2
 
-        self.spin = wx.SpinButton(self, -1, (w + 6, 50), (h/2, 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)