mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-15 17:20:07 +01:00
Fix eol style
According to the documentation, 'eol' enables EOL filling (not 'eolfilled'). https://docs.wxpython.org/wx.stc.StyledTextCtrl.html#wx.stc.StyledTextCtrl.StyleSetSpec
This commit is contained in:
@@ -187,7 +187,7 @@ class EditWindow(stc.StyledTextCtrl):
|
||||
self.StyleSetSpec(stc.STC_P_COMMENTBLOCK,
|
||||
"fore:#7F7F7F")
|
||||
self.StyleSetSpec(stc.STC_P_STRINGEOL,
|
||||
"fore:#000000,face:%(mono)s,back:#E0C0E0,eolfilled" % faces)
|
||||
"fore:#000000,face:%(mono)s,back:#E0C0E0,eol" % faces)
|
||||
|
||||
def OnUpdateUI(self, event):
|
||||
"""Check for matching braces."""
|
||||
|
||||
Reference in New Issue
Block a user