aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2006-02-26 00:58:22 +0000
committernyamatongwe <unknown>2006-02-26 00:58:22 +0000
commit3443ea8530e6e6f2a1195b4ae472e9c50b9434f4 (patch)
tree43f3b3cd67b11f8e5950bbae9e9ed0fc02af99ed /src/ViewStyle.cxx
parentf6994eeda16b695b2abcb9654e704749b28a85b1 (diff)
downloadscintilla-mirror-3443ea8530e6e6f2a1195b4ae472e9c50b9434f4.tar.gz
Translucency implementation for INDIC_ROUNDBOX and caret 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 fe519905b..f221af193 100644
--- a/src/ViewStyle.cxx
+++ b/src/ViewStyle.cxx
@@ -95,6 +95,7 @@ ViewStyle::ViewStyle(const ViewStyle &source) {
caretcolour.desired = source.caretcolour.desired;
showCaretLineBackground = source.showCaretLineBackground;
caretLineBackground.desired = source.caretLineBackground.desired;
+ caretLineAlpha = source.caretLineAlpha;
edgecolour.desired = source.edgecolour.desired;
edgeState = source.edgeState;
caretWidth = source.caretWidth;
@@ -157,6 +158,7 @@ void ViewStyle::Init() {
caretcolour.desired = ColourDesired(0, 0, 0);
showCaretLineBackground = false;
caretLineBackground.desired = ColourDesired(0xff, 0xff, 0);
+ caretLineAlpha = SC_ALPHA_NOALPHA;
edgecolour.desired = ColourDesired(0xc0, 0xc0, 0xc0);
edgeState = EDGE_NONE;
caretWidth = 1;