diff options
Diffstat (limited to 'src/ViewStyle.cxx')
-rw-r--r-- | src/ViewStyle.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index 1c1f93170..58e0edea9 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -204,6 +204,10 @@ ViewStyle::ViewStyle(const ViewStyle &source) { marginStyleOffset = source.marginStyleOffset; annotationVisible = source.annotationVisible; annotationStyleOffset = source.annotationStyleOffset; + braceHighlightIndicatorSet = source.braceHighlightIndicatorSet; + braceHighlightIndicator = source.braceHighlightIndicator; + braceBadLightIndicatorSet = source.braceBadLightIndicatorSet; + braceBadLightIndicator = source.braceBadLightIndicator; } ViewStyle::~ViewStyle() { @@ -312,6 +316,10 @@ void ViewStyle::Init(size_t stylesSize_) { marginStyleOffset = 0; annotationVisible = ANNOTATION_HIDDEN; annotationStyleOffset = 0; + braceHighlightIndicatorSet = false; + braceHighlightIndicator = 0; + braceBadLightIndicatorSet = false; + braceBadLightIndicator = 0; } void ViewStyle::RefreshColourPalette(Palette &pal, bool want) { |