]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed some colours
authorRobin Dunn <robin@alldunn.com>
Sat, 22 May 2004 03:32:11 +0000 (03:32 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 22 May 2004 03:32:11 +0000 (03:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27392 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/lib/multisash.py

index f9841759976b67537019b2c2e1133761ff5e7a35..2e7e2614adbb682721db93088ca3391d0cb72b5f 100644 (file)
@@ -302,6 +302,9 @@ class MultiViewLeaf(wx.Window):
 
         self.Bind(wx.EVT_SIZE,self.OnSize)
 
+        self.SetBackgroundColour(wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DFACE))
+
+
     def GetSaveData(self):
         saveData = {}
         saveData['detailClass'] = str(self.detail.child.__class__)
@@ -450,6 +453,9 @@ class MultiSizer(wx.Window):
         self.Bind(wx.EVT_LEFT_DOWN,self.OnPress)
         self.Bind(wx.EVT_LEFT_UP,self.OnRelease)
 
+        self.SetBackgroundColour(wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DFACE))
+
+
     def CalcSizePos(self,parent):
         pw,ph = parent.GetSize()
         if self.side == MV_HOR: