[pywin32-checkins] pywin32/Pythonwin/pywin/framework/editor/color coloreditor.py, 1.15, 1.16
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2009-02-08 20:11:53
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/framework/editor/color In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv6358 Modified Files: coloreditor.py Log Message: Fix [ 2560351 ] Can't change Folding Margin width Patch from MizardX Index: coloreditor.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/framework/editor/color/coloreditor.py,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** coloreditor.py 4 Dec 2008 12:44:44 -0000 1.15 --- coloreditor.py 8 Feb 2009 20:11:47 -0000 1.16 *************** *** 120,124 **** width = GetEditorOption("Marker Margin Width", 16) self.SCISetMarginWidthN(1, width) ! width = GetEditorOption("Folding Margin Width", 12) self.SCISetMarginWidthN(2, width) width = GetEditorOption("Line Number Margin Width", 0) --- 120,124 ---- width = GetEditorOption("Marker Margin Width", 16) self.SCISetMarginWidthN(1, width) ! width = GetEditorOption("Fold Margin Width", 12) self.SCISetMarginWidthN(2, width) width = GetEditorOption("Line Number Margin Width", 0) |