Patches from Tomo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-01-20 23:26:57 +00:00
parent 90548138ac
commit 317d155040
3 changed files with 15 additions and 17 deletions

View File

@@ -67,7 +67,7 @@ class TestValueWindow(gizmos.TreeCompanionWindow):
text = text + tree.GetItemText(itemId)
pen = wx.Pen(
wx.SystemSettings_GetSystemColour(wx.SYS_COLOUR_3DLIGHT),
wx.SystemSettings_GetColour(wx.SYS_COLOUR_3DLIGHT),
1, wx.SOLID
)
@@ -97,11 +97,11 @@ class TestPanel(wx.Panel):
)
splitter.SetSashSize(2)
tree = TestTree(splitter, -1, style = wx.TR_HAS_BUTTONS |
wx.TR_NO_LINES |
wx.TR_ROW_LINES |
#wx.TR_HIDE_ROOT |
wx.NO_BORDER )
tree = TestTree(splitter, style = wx.TR_HAS_BUTTONS |
wx.TR_NO_LINES |
wx.TR_ROW_LINES |
#wx.TR_HIDE_ROOT |
wx.NO_BORDER )
valueWindow = TestValueWindow(splitter, style=wx.NO_BORDER)