aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2006-12-28 23:00:32 +0000
committernyamatongwe <devnull@localhost>2006-12-28 23:00:32 +0000
commit14521a683cbdd6574c9bd38309166d96fc295168 (patch)
tree2c314e2385e119e07f52371502742b8213dcf16b /src/ViewStyle.cxx
parent703e1f60c8183a7d1a747792e64f649c95a41f7c (diff)
downloadscintilla-mirror-14521a683cbdd6574c9bd38309166d96fc295168.tar.gz
Patch from Jason Haslam to optionally extend selection colour to left side when
end of line selected.
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 b4da30ace..b6b14da9b 100644
--- a/src/ViewStyle.cxx
+++ b/src/ViewStyle.cxx
@@ -74,6 +74,7 @@ ViewStyle::ViewStyle(const ViewStyle &source) {
selbackground.desired = source.selbackground.desired;
selbackground2.desired = source.selbackground2.desired;
selAlpha = source.selAlpha;
+ selEOLFilled = source.selEOLFilled;
foldmarginColourSet = source.foldmarginColourSet;
foldmarginColour.desired = source.foldmarginColour.desired;
@@ -143,6 +144,7 @@ void ViewStyle::Init() {
selbackground.desired = ColourDesired(0xc0, 0xc0, 0xc0);
selbackground2.desired = ColourDesired(0xb0, 0xb0, 0xb0);
selAlpha = SC_ALPHA_NOALPHA;
+ selEOLFilled = false;
foldmarginColourSet = false;
foldmarginColour.desired = ColourDesired(0xff, 0, 0);