Adjust the layout a bit, don't show the checkbox if we're not running

the demo framework.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43385 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-11-12 23:41:06 +00:00
parent 836ddd1883
commit 25ecabd93b
3 changed files with 9 additions and 6 deletions

View File

@@ -89,7 +89,8 @@ class TestListCtrlPanel(wx.Panel):
sizer = wx.BoxSizer(wx.VERTICAL)
if wx.Platform == "__WXMAC__":
if wx.Platform == "__WXMAC__" and \
hasattr(wx.GetApp().GetTopWindow(), "LoadDemo"):
self.useNative = wx.CheckBox(self, -1, "Use native listctrl")
self.useNative.SetValue(
not wx.SystemOptions.GetOptionInt("mac.listctrl.always_use_generic") )
@@ -102,7 +103,7 @@ class TestListCtrlPanel(wx.Panel):
| wx.LC_SORT_ASCENDING
)
sizer.Add(self.list, 1, wx.EXPAND | wx.ALL, 4)
sizer.Add(self.list, 1, wx.EXPAND)
self.SetSizer(sizer)
self.SetAutoLayout(True)