]> git.saurik.com Git - wxWidgets.git/commitdiff
Tweaked the colours a bit
authorRobin Dunn <robin@alldunn.com>
Mon, 28 Aug 2006 18:51:46 +0000 (18:51 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 28 Aug 2006 18:51:46 +0000 (18:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40902 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/RawBitmapAccess.py

index 2e0e57d384d278f70ef8e83c1cb72d99711435f7..01ee2fb46f4383ac7c38d3e669020695e8b25985 100644 (file)
@@ -9,9 +9,9 @@ class TestPanel(wx.Panel):
         wx.Panel.__init__(self, parent, -1)
         self.Bind(wx.EVT_PAINT, self.OnPaint)
         
-        self.redBmp   = self.MakeBitmap(188, 143, 234)
-        self.greenBmp = self.MakeBitmap(35,  142,  35)
-        self.blueBmp  = self.MakeBitmap(50,  153, 204)
+        self.redBmp   = self.MakeBitmap(178,  34,  34)
+        self.greenBmp = self.MakeBitmap( 35, 142,  35)
+        self.blueBmp  = self.MakeBitmap(  0,   0, 139)
 
     def MakeBitmap(self, red, green, blue, alpha=128):
         bmp = wx.EmptyBitmap(100, 100, 32)