]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxSpinCtrl.py
fixed the width of the (week day as number) field, should be 1, not 2
[wxWidgets.git] / wxPython / demo / wxSpinCtrl.py
index 7729b88b5d3fadd32cf9eebe43324f68c2372ded..f373c82aa03f13d69fa35c0f91449101452ef5d5 100644 (file)
@@ -17,6 +17,7 @@ class TestPanel(wxPanel):
         sc = wxSpinCtrl(self, -1, "", wxPoint(30, 50), wxSize(80, -1))
         sc.SetRange(1,100)
         sc.SetValue(5)
+        #sc.Enable(false)
 
 
 #----------------------------------------------------------------------