Skip to content

Commit ac0fe22

Browse files
committed
Merge branch 'fix_6370_HighlightColor_init_sets_wrong_attribute' into dev
2 parents 2d97a80 + 3afba06 commit ac0fe22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/highlight.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(self, color=None, mix_color=None, mix=None, red=None, green=None, b
4343
self.green = green
4444
self.blue = blue
4545
elif (mix_color is not None) and (mix is not None):
46-
self.style = HighlightColorStyle.MixedHighlightColor
46+
self._style = HighlightColorStyle.MixedHighlightColor
4747
if color is None:
4848
self.color = HighlightStandardColor.NoHighlightColor
4949
else:

0 commit comments

Comments
 (0)