Fixed bug in CFileEditor
authorLaurent Bessard
Wed, 24 Apr 2013 23:53:23 +0200
changeset 1066 b6a5ae4a68d7
parent 1065 36b7ce528911
child 1067 4f460c1dffb5
Fixed bug in CFileEditor
c_ext/CFileEditor.py
--- a/c_ext/CFileEditor.py	Wed Apr 24 22:57:41 2013 +0200
+++ b/c_ext/CFileEditor.py	Wed Apr 24 23:53:23 2013 +0200
@@ -122,7 +122,7 @@
 
         # Global default styles for all languages
         self.StyleSetSpec(stc.STC_STYLE_DEFAULT,     "face:%(mono)s,size:%(size)d" % faces)
-        self.StyleSetSpec(stc.STC_STYLE_LINENUMBER,  "back:#C0C0C0,face:%(helv)s,size:%(size2)d" % faces)
+        self.StyleSetSpec(stc.STC_STYLE_LINENUMBER,  "back:#C0C0C0,face:%(helv)s,size:%(size)d" % faces)
         self.StyleSetSpec(stc.STC_STYLE_CONTROLCHAR, "face:%(other)s" % faces)
         self.StyleSetSpec(stc.STC_STYLE_BRACELIGHT,  "fore:#FFFFFF,back:#0000FF,bold")
         self.StyleSetSpec(stc.STC_STYLE_BRACEBAD,    "fore:#000000,back:#FF0000,bold")