diff options
| author | Galen Williamson <galen@vector35.com> | 2025-01-28 17:23:22 -0500 |
|---|---|---|
| committer | Galen Williamson <galen@vector35.com> | 2025-01-28 17:23:22 -0500 |
| commit | ac0fe22f3c158f51f8c1d43e73b8664d0fed2eb9 (patch) | |
| tree | 66ab3bbfb451c8553795964f3aa3185fd9224d89 /python | |
| parent | 2d97a80d7f659133813a40d82e00806f4f14d03b (diff) | |
| parent | 3afba0617ec797d6b2654f8c9722866776ad0ff6 (diff) | |
Merge branch 'fix_6370_HighlightColor_init_sets_wrong_attribute' into dev
Diffstat (limited to 'python')
| -rw-r--r-- | python/highlight.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/highlight.py b/python/highlight.py index 1f9397a4..5d44f6c3 100644 --- a/python/highlight.py +++ b/python/highlight.py @@ -43,7 +43,7 @@ class HighlightColor: self.green = green self.blue = blue elif (mix_color is not None) and (mix is not None): - self.style = HighlightColorStyle.MixedHighlightColor + self._style = HighlightColorStyle.MixedHighlightColor if color is None: self.color = HighlightStandardColor.NoHighlightColor else: |
