diff options
| author | nyamatongwe <unknown> | 2011-04-29 19:48:39 +1000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2011-04-29 19:48:39 +1000 | 
| commit | 9a5459d5b24664df3c79b9b2061fe4eeb9de36d0 (patch) | |
| tree | b4c35be18bbcdbbfa70d9f0772380979140f7973 /src/ViewStyle.h | |
| parent | 0ae4049da9517830c556a57b196d0213d4a46bf5 (diff) | |
| download | scintilla-mirror-9a5459d5b24664df3c79b9b2061fe4eeb9de36d0.tar.gz | |
Use indicators to show matching braces. Feature #3290434.
From Marko Njezic.
Diffstat (limited to 'src/ViewStyle.h')
| -rw-r--r-- | src/ViewStyle.h | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h index 74efa6abd..b038a9b54 100644 --- a/src/ViewStyle.h +++ b/src/ViewStyle.h @@ -129,6 +129,10 @@ public:  	int marginStyleOffset;  	int annotationVisible;  	int annotationStyleOffset; +	bool braceHighlightIndicatorSet; +	int braceHighlightIndicator; +	bool braceBadLightIndicatorSet; +	int braceBadLightIndicator;  	ViewStyle();  	ViewStyle(const ViewStyle &source);  | 
