diff options
| author | nyamatongwe <devnull@localhost> | 2000-06-21 02:59:25 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-06-21 02:59:25 +0000 | 
| commit | 6d3878dca546f21822b087d70bea23db9437c0a9 (patch) | |
| tree | dce2610a6c578021e13c36d3e4e2c9f4a2eb6dfc /src/ViewStyle.cxx | |
| parent | 507a9f0685923e0b06597f717daa3b362db1b6ef (diff) | |
| download | scintilla-mirror-6d3878dca546f21822b087d70bea23db9437c0a9.tar.gz | |
Added indentation guide API.
View whitespace has setting to only see outside indentation.
Indentation guide highlight.
Diffstat (limited to 'src/ViewStyle.cxx')
| -rw-r--r-- | src/ViewStyle.cxx | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index 580ecc71f..fe2375018 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -83,6 +83,7 @@ ViewStyle::ViewStyle(const ViewStyle &source) {  	fixedColumnWidth = source.fixedColumnWidth;  	zoomLevel = source.zoomLevel;  	viewWhitespace = source.viewWhitespace; +	viewIndentationGuides = source.viewIndentationGuides;  	viewEOL = source.viewEOL;  	showMarkedLines = source.showMarkedLines;		  } @@ -142,7 +143,8 @@ void ViewStyle::Init() {  			maskInLine &= ~ms[margin].mask;  	}  	zoomLevel = 0; -	viewWhitespace = false; +	viewWhitespace = wsInvisible; +	viewIndentationGuides = false;  	viewEOL = false;  	showMarkedLines = true;  } | 
