]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/demo/wxButton.py
Changed order of #ifdefs to get native version on OS/2, even if
[wxWidgets.git] / utils / wxPython / demo / wxButton.py
index 3e4272646e39c0c617dbe49c085bbe6c5760793c..d65cafd59db9b69691bb3bbd1c0feb096f44b00d 100644 (file)
@@ -18,9 +18,8 @@ class TestPanel(wxPanel):
         EVT_BUTTON(self, 20, self.OnClick)
 
         bmp = wxBitmap('bitmaps/test2.bmp', wxBITMAP_TYPE_BMP)
-        if wxPlatform == '__WXMSW__':
-            mask = wxMaskColour(bmp, wxBLUE)
-            bmp.SetMask(mask)
+        mask = wxMaskColour(bmp, wxBLUE)
+        bmp.SetMask(mask)
         wxBitmapButton(self, 30, bmp, wxPoint(140, 20),
                        wxSize(bmp.GetWidth()+10, bmp.GetHeight()+10))
         EVT_BUTTON(self, 30, self.OnClick)