]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/StyledTextCtrl_1.py
Fixed a couple typos and such
[wxWidgets.git] / wxPython / demo / StyledTextCtrl_1.py
index 20695d129fd8aef81a1fb7d41ccce3119396f4d2..eda33f43a4941f7c38a8a63c2063e81bf1483afb 100644 (file)
@@ -15,7 +15,6 @@ debug = 1
 
 
 demoText = """\
 
 
 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
 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")
 
         print "FindText(0, max, 'indicators'): ",
         print ed.FindText(0, ed.GetTextLength(), "indicators")
 
-        ed.GotoPos(0)
-
-
+    wx.CallAfter(ed.GotoPos, 0)
     return p
 
 
     return p