From 58a1f9d01fa3311a18081d39ca400916d304044b Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 28 Aug 2006 18:51:46 +0000 Subject: [PATCH] Tweaked the colours a bit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40902 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/RawBitmapAccess.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wxPython/demo/RawBitmapAccess.py b/wxPython/demo/RawBitmapAccess.py index 2e0e57d384..01ee2fb46f 100644 --- a/wxPython/demo/RawBitmapAccess.py +++ b/wxPython/demo/RawBitmapAccess.py @@ -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)