demo tweaks

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26166 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-03-10 04:04:52 +00:00
parent 4276dc529d
commit a5d9c77bb8
4 changed files with 5 additions and 12 deletions

View 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)