aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2019-06-22 10:51:29 +1000
committerNeil <nyamatongwe@gmail.com>2019-06-22 10:51:29 +1000
commit1573a0d60a3cf054979125c7986566d13a6686d3 (patch)
treed11ebaac9ad05da5826300ecb20d7f24a7e7453a /include/Scintilla.iface
parent8aa1cae911d5323f2e435c37ef5132c90f16ed55 (diff)
downloadscintilla-mirror-1573a0d60a3cf054979125c7986566d13a6686d3.tar.gz
Bug [#1924]. Option to allow block carets to trail selection ranges.
Bit flag value is CARETSTYLE_BLOCK_AFTER=256.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 8251c5af9..661a6a12b 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -2326,8 +2326,9 @@ val CARETSTYLE_INVISIBLE=0
val CARETSTYLE_LINE=1
val CARETSTYLE_BLOCK=2
val CARETSTYLE_OVERSTRIKE_BAR=0
-val CARETSTYLE_OVERSTRIKE_BLOCK=16
+val CARETSTYLE_OVERSTRIKE_BLOCK=0x10
val CARETSTYLE_INS_MASK=0xF
+val CARETSTYLE_BLOCK_AFTER=0x100
# Set the style of the caret to be drawn.
set void SetCaretStyle=2512(CaretStyle caretStyle,)