aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-09-28 22:06:23 +0000
committernyamatongwe <devnull@localhost>2003-09-28 22:06:23 +0000
commite098d9e7420a8deec3db17df31d9d7bb4dbcf22b (patch)
tree08e41dc38284608575f3bc1dbc375502ce65ecb5 /src/ViewStyle.cxx
parent11b58966dcd5909f1fbd22def7f9888893bdd16f (diff)
downloadscintilla-mirror-e098d9e7420a8deec3db17df31d9d7bb4dbcf22b.tar.gz
Hotspot improvements from Simon, including setting to
limit hotspots to a single line.
Diffstat (limited to 'src/ViewStyle.cxx')
-rw-r--r--src/ViewStyle.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx
index eb8e54f2f..e2a65e09e 100644
--- a/src/ViewStyle.cxx
+++ b/src/ViewStyle.cxx
@@ -84,6 +84,7 @@ ViewStyle::ViewStyle(const ViewStyle &source) {
hotspotBackgroundSet = source.hotspotBackgroundSet;
hotspotBackground.desired = source.hotspotBackground.desired;
hotspotUnderline = source.hotspotUnderline;
+ hotspotSingleLine = source.hotspotSingleLine;
whitespaceForegroundSet = source.whitespaceForegroundSet;
whitespaceForeground.desired = source.whitespaceForeground.desired;
@@ -164,6 +165,7 @@ void ViewStyle::Init() {
hotspotBackgroundSet = false;
hotspotBackground.desired = ColourDesired(0xff, 0xff, 0xff);
hotspotUnderline = true;
+ hotspotSingleLine = true;
leftMarginWidth = 1;
rightMarginWidth = 1;