From 55bd43d245d26a35c4f942e33c7cf4ef7405fbfc Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 29 Jun 2004 02:06:16 +0000 Subject: [PATCH] Tweaks for testing styles git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28079 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/TreeListCtrl.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/wxPython/demo/TreeListCtrl.py b/wxPython/demo/TreeListCtrl.py index 36c1a2f1bc..327a238b7c 100644 --- a/wxPython/demo/TreeListCtrl.py +++ b/wxPython/demo/TreeListCtrl.py @@ -12,11 +12,12 @@ class TestPanel(wx.Panel): wx.Panel.__init__(self, parent, -1) self.Bind(wx.EVT_SIZE, self.OnSize) - self.tree = gizmos.TreeListCtrl(self, -1, style = wx.TR_DEFAULT_STYLE - #| wx.TR_ROW_LINES - #| wx.TR_NO_LINES - #| wx.TR_TWIST_BUTTONS - #| wx.TR_FULL_ROW_HIGHLIGHT + self.tree = gizmos.TreeListCtrl(self, -1, style = + wx.TR_DEFAULT_STYLE + #wx.TR_TWIST_BUTTONS + #| wx.TR_ROW_LINES + #| wx.TR_NO_LINES + | wx.TR_FULL_ROW_HIGHLIGHT ) isz = (16,16) il = wx.ImageList(isz[0], isz[1])