# HG changeset patch # User lbessard # Date 1191600110 -7200 # Node ID d8284a8f1934dfe8390c1d9ac053aa6e4daab965 # Parent a9b8916d906d423913b0d4b5b6fc8139af14fa8f Bug on linux in BlockPropertiesDialog (root visible) fixed diff -r a9b8916d906d -r d8284a8f1934 Dialogs.py --- a/Dialogs.py Fri Oct 05 18:00:25 2007 +0200 +++ b/Dialogs.py Fri Oct 05 18:01:50 2007 +0200 @@ -118,7 +118,7 @@ treestyle = wx.TR_HAS_BUTTONS|wx.TR_HIDE_ROOT|wx.TR_SINGLE|wx.SUNKEN_BORDER self.TypeTree = wx.TreeCtrl(id=ID_BLOCKPROPERTIESDIALOGTYPETREE, name='TypeTree', parent=self, pos=wx.Point(0, 0), - size=wx.Size(0, 0), style=wx.TR_HAS_BUTTONS|wx.TR_SINGLE|wx.SUNKEN_BORDER) + size=wx.Size(0, 0), style=treestyle) self.Bind(wx.EVT_TREE_SEL_CHANGED, self.OnTypeTreeItemSelected, id=ID_BLOCKPROPERTIESDIALOGTYPETREE)