From: Kevin A. <ka...@us...> - 2004-07-19 17:40:53
|
Update of /cvsroot/pythoncard/PythonCard/components In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10545/components Modified Files: textarea.py Log Message: removed PROCESS_TAB flag for 2.5.2.x Index: textarea.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/components/textarea.py,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** textarea.py 13 May 2004 02:40:24 -0000 1.25 --- textarea.py 19 Jul 2004 17:40:44 -0000 1.26 *************** *** 50,54 **** aResource.position, aResource.size, ! style = wx.TE_RICH2 | wx.TE_PROCESS_TAB | wx.TE_MULTILINE | borderStyle | \ textfield.getAlignment(aResource.alignment) | \ wx.NO_FULL_REPAINT_ON_RESIZE | wx.CLIP_SIBLINGS, --- 50,57 ---- aResource.position, aResource.size, ! # KEA 2004-07-19 ! # don't use wx.TE_PROCESS_TAB with 2.5.2 and later ! ## style = wx.TE_RICH2 | wx.TE_PROCESS_TAB | wx.TE_MULTILINE | borderStyle | \ ! style = wx.TE_RICH2 | wx.TE_MULTILINE | borderStyle | \ textfield.getAlignment(aResource.alignment) | \ wx.NO_FULL_REPAINT_ON_RESIZE | wx.CLIP_SIBLINGS, |