From: Robin Dunn Date: Thu, 12 Feb 2004 02:22:42 +0000 (+0000) Subject: A little tweak X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/88f226fa9896413f8884d616f6ce98f6e7a6096d A little tweak git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25764 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/StyledTextCtrl_1.py b/wxPython/demo/StyledTextCtrl_1.py index 20695d129f..eda33f43a4 100644 --- a/wxPython/demo/StyledTextCtrl_1.py +++ b/wxPython/demo/StyledTextCtrl_1.py @@ -15,7 +15,6 @@ debug = 1 demoText = """\ - This editor is provided by a class named wx.StyledTextCtrl. As the name suggests, you can define styles that can be applied to sections of text. This will typically be used for things like @@ -268,9 +267,7 @@ def runTest(frame, nb, log): print "FindText(0, max, 'indicators'): ", print ed.FindText(0, ed.GetTextLength(), "indicators") - ed.GotoPos(0) - - + wx.CallAfter(ed.GotoPos, 0) return p