]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxTextEntryDialog.py
fix text scrolling in GTK2 (patch 703988)
[wxWidgets.git] / wxPython / demo / wxTextEntryDialog.py
index b0049d6506d0509575977c90444a63d4f27779ea..3fd27aee90204bd532cef7e7a0a98f26240fd74a 100644 (file)
@@ -6,7 +6,7 @@ from wxPython.wx import *
 def runTest(frame, nb, log):
     dlg = wxTextEntryDialog(frame, 'What is your favorite programming language?',
                             'Duh??', 'Python')
-    dlg.SetValue("Python is the best!")  #### this doesn't work?
+    dlg.SetValue("Python is the best!")
     if dlg.ShowModal() == wxID_OK:
         log.WriteText('You entered: %s\n' % dlg.GetValue())
     dlg.Destroy()
@@ -17,14 +17,15 @@ def runTest(frame, nb, log):
 
 
 
+overview = """\
 
+"""
 
 
 
 
 
-
-
-overview = """\
-
-"""
+if __name__ == '__main__':
+    import sys,os
+    import run
+    run.main(['', os.path.basename(sys.argv[0])])