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:
Kazuya O'moto
2025-04-30 03:39:19 +09:00
parent bb3256388c
commit ff679f93a8

View File

@@ -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."""