]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxButton.py
implement wxColourDialog::Move() (patch 548048)
[wxWidgets.git] / wxPython / demo / wxButton.py
index a8956f3db982586d9de25aee99f9b2d451dbe24d..2c763d7f70b4178a7a4856c115cb7df4b5509880 100644 (file)
@@ -25,13 +25,10 @@ class TestPanel(wxPanel):
         mask = wxMaskColour(bmp, wxBLUE)
         bmp.SetMask(mask)
 
-        ##print bmp.GetWidth(), bmp.GetHeight()
-
         wxBitmapButton(self, 30, bmp, wxPoint(140, 20),
                        wxSize(bmp.GetWidth()+10, bmp.GetHeight()+10))
         EVT_BUTTON(self, 30, self.OnClick)
 
-
     def OnClick(self, event):
         self.log.WriteText("Click! (%d)\n" % event.GetId())