]> git.saurik.com Git - wxWidgets.git/commitdiff
Refresh after changing the bitmap
authorRobin Dunn <robin@alldunn.com>
Tue, 29 Jun 2004 02:04:04 +0000 (02:04 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 29 Jun 2004 02:04:04 +0000 (02:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/lib/colourselect.py

index 689e467e679198a5c43658baefa1614ba6f20e8a..f71329967ea9df75b2a2fba89e8b2ea855b17380 100644 (file)
@@ -133,7 +133,8 @@ class ColourSelect(wx.BitmapButton):
         self.SetBitmapDisabled(bmp)
         self.SetBitmapFocus(bmp)
         self.SetBitmapSelected(bmp)
-
+        self.Refresh()
+        
 
     def OnChange(self):
         wx.PostEvent(self, ColourSelectEvent(self.GetId(), self.GetValue()))
@@ -150,7 +151,6 @@ class ColourSelect(wx.BitmapButton):
         if changed:
             data = dlg.GetColourData()
             self.SetColour(data.GetColour())
-
         dlg.Destroy()
 
         # moved after dlg.Destroy, since who knows what the callback will do...