aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-04-23 02:26:06 +0000
committernyamatongwe <unknown>2007-04-23 02:26:06 +0000
commitbde8aef4ff5e6bd93c3b2bbd8fd7de80bccbbdb8 (patch)
tree7799078040df57b7f5ce1072d768e476a7187041 /src/ViewStyle.cxx
parent7baad7314df72e0c2f548482df1c288a2587d3cd (diff)
downloadscintilla-mirror-bde8aef4ff5e6bd93c3b2bbd8fd7de80bccbbdb8.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;