From 50b9cfd95a2981a88bd4bb417c2631e598c49b8a Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 7 Oct 2019 15:17:53 -0700 Subject: [PATCH] Don't start out with a transparent colour, the ColourDialog on OSX will not change it without extra steps --- demo/agw/HyperTreeList.py | 1 - 1 file changed, 1 deletion(-) diff --git a/demo/agw/HyperTreeList.py b/demo/agw/HyperTreeList.py index 862fa5d4..609fa172 100644 --- a/demo/agw/HyperTreeList.py +++ b/demo/agw/HyperTreeList.py @@ -1171,7 +1171,6 @@ class HyperTreeListDemo(wx.Frame): self.columnchoice.Bind(wx.EVT_CHOICE, self.OnColumnChoiceChanged) self.columnbackgroundcolour = csel.ColourSelect(self.leftpanel, -1, "Choose...", wx.BLACK) self.columnbackgroundcolour.Bind(csel.EVT_COLOURSELECT, self.OnColumnBackgroundColour) - self.columnbackgroundcolour.SetColour(wx.Colour(255,255,255,0)) flexgridcolumn.Add(label, 0, wx.ALIGN_CENTER_VERTICAL) hSizer = wx.BoxSizer(wx.HORIZONTAL) hSizer.Add(self.columnchoice, 0)