]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/StyledTextCtrl_2.py
a little cleanup
[wxWidgets.git] / wxPython / demo / StyledTextCtrl_2.py
index 2258172d027b0e2dfa30868b99279f2e89028cea..169ddc315610e35495f3ff0645b7955c344d8ffe 100644 (file)
@@ -42,9 +42,9 @@ class PythonSTC(stc.StyledTextCtrl):
 
     fold_symbols = 2
     
-    def __init__(self, parent, ID):
+    def __init__(self, parent, ID, style=0):
         stc.StyledTextCtrl.__init__(self, parent, ID,
-                                  style = wx.NO_FULL_REPAINT_ON_RESIZE)
+                                  style = style|wx.NO_FULL_REPAINT_ON_RESIZE)
 
         self.CmdKeyAssign(ord('B'), stc.STC_SCMOD_CTRL, stc.STC_CMD_ZOOMIN)
         self.CmdKeyAssign(ord('N'), stc.STC_SCMOD_CTRL, stc.STC_CMD_ZOOMOUT)
@@ -386,7 +386,7 @@ be helpful.
 if __name__ == '__main__':
     import sys,os
     import run
-    run.main(['', os.path.basename(sys.argv[0])])
+    run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])