From ff679f93a83b9ba1874bd1854658d188a4afdc97 Mon Sep 17 00:00:00 2001 From: Kazuya O'moto Date: Wed, 30 Apr 2025 03:39:19 +0900 Subject: [PATCH] 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 --- wx/py/editwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wx/py/editwindow.py b/wx/py/editwindow.py index fcaef992..8cb77751 100644 --- a/wx/py/editwindow.py +++ b/wx/py/editwindow.py @@ -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."""