From a1539a1ff2e9bf2e9475e3519309450984e1b876 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 16 May 2005 20:14:24 +0000 Subject: [PATCH] Don't bypass the bacground erase anymore git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34084 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/SplitTree.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/wxPython/demo/SplitTree.py b/wxPython/demo/SplitTree.py index 07884d9445..bf88d3a60d 100644 --- a/wxPython/demo/SplitTree.py +++ b/wxPython/demo/SplitTree.py @@ -48,10 +48,6 @@ class TestValueWindow(gizmos.TreeCompanionWindow): def __init__(self, parent, style=0): gizmos.TreeCompanionWindow.__init__(self, parent, -1, style=style) self.SetBackgroundColour("WHITE") - self.Bind(wx.EVT_ERASE_BACKGROUND, self.OEB) - - def OEB(self, evt): - pass # This method is called to draw each item in the value window def DrawItem(self, dc, itemId, rect): -- 2.45.2