From: Robin Dunn Date: Sat, 17 Jul 2004 22:57:33 +0000 (+0000) Subject: minor tweaks X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/35ee3288c6306889b9057cd1a407d1980f6370de minor tweaks git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28292 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index facaf02784..e1a23d9fce 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -918,6 +918,9 @@ class MyApp(wx.App): the main frame when it is time to do so. """ + # For debugging + #self.SetAssertMode(wx.PYAPP_ASSERT_DIALOG) + # Normally when using a SplashScreen you would create it, show # it and then continue on with the applicaiton's # initialization, finally creating and showing the main diff --git a/wxPython/demo/VListBox.py b/wxPython/demo/VListBox.py index 30cec2b5f3..fe2112ea5f 100644 --- a/wxPython/demo/VListBox.py +++ b/wxPython/demo/VListBox.py @@ -14,7 +14,7 @@ class MyVListBox(wx.VListBox): if self.GetSelection() == n: c = wx.SystemSettings.GetColour(wx.SYS_COLOUR_HIGHLIGHTTEXT) else: - c = self.GetForegroundColour()#wx.SystemSettings.GetColour(wx.SYS_COLOUR_HIGHLIGHTTEXT) + c = self.GetForegroundColour() dc.SetFont(self.GetFont()) dc.SetTextForeground(c) dc.DrawLabel(self._getItemText(n), rect, @@ -24,11 +24,9 @@ class MyVListBox(wx.VListBox): # required to draw the n'th item. def OnMeasureItem(self, n): height = 0 - for line in self._getItemText(n).split('\n'): w, h = self.GetTextExtent(line) height += h - return height + 5