Ensure that runTest is not modal, even when a required module is not
installed. Create the code page small and hide it to reduce flicker, it will later be shown and sized correctly when put into the notebook. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28918 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -42,9 +42,10 @@ class PythonSTC(stc.StyledTextCtrl):
|
||||
|
||||
fold_symbols = 2
|
||||
|
||||
def __init__(self, parent, ID, style=0):
|
||||
stc.StyledTextCtrl.__init__(self, parent, ID,
|
||||
style = style|wx.NO_FULL_REPAINT_ON_RESIZE)
|
||||
def __init__(self, parent, ID,
|
||||
pos=wx.DefaultPosition, size=wx.DefaultSize,
|
||||
style=0):
|
||||
stc.StyledTextCtrl.__init__(self, parent, ID, pos, size, style)
|
||||
|
||||
self.CmdKeyAssign(ord('B'), stc.STC_SCMOD_CTRL, stc.STC_CMD_ZOOMIN)
|
||||
self.CmdKeyAssign(ord('N'), stc.STC_SCMOD_CTRL, stc.STC_CMD_ZOOMOUT)
|
||||
|
Reference in New Issue
Block a user