aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2007-04-23 02:26:06 +0000
committernyamatongwe <devnull@localhost>2007-04-23 02:26:06 +0000
commit2db65e1ed57216801b5074d4fb7c422b4641c807 (patch)
tree7799078040df57b7f5ce1072d768e476a7187041 /src/ViewStyle.cxx
parent0018e913b44f1bd0c71659687f21e8414427d1fa (diff)
downloadscintilla-mirror-2db65e1ed57216801b5074d4fb7c422b4641c807.tar.gz
Added setting to allow each indicator to be drawn either under or
over text.
Diffstat (limited to 'src/ViewStyle.cxx')
-rw-r--r--src/ViewStyle.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx
index 403d17a3a..6611439f5 100644
--- a/src/ViewStyle.cxx
+++ b/src/ViewStyle.cxx
@@ -129,10 +129,13 @@ void ViewStyle::Init() {
ResetDefaultStyle();
indicators[0].style = INDIC_SQUIGGLE;
+ indicators[0].under = false;
indicators[0].fore = ColourDesired(0, 0x7f, 0);
indicators[1].style = INDIC_TT;
+ indicators[1].under = false;
indicators[1].fore = ColourDesired(0, 0, 0xff);
indicators[2].style = INDIC_PLAIN;
+ indicators[2].under = false;
indicators[2].fore = ColourDesired(0xff, 0, 0);
lineHeight = 1;