From 4c8a1f741c73911eff813a78c08fa88427eec38b Mon Sep 17 00:00:00 2001 From: Neil Date: Sat, 22 Jun 2019 10:51:29 +1000 Subject: Backport: Bug [#1924]. Option to allow block carets to trail selection ranges. Bit flag value is CARETSTYLE_BLOCK_AFTER=256. Backport of changeset 7609:340a0f51fb3c. --- include/Scintilla.iface | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/Scintilla.iface') diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 75582b0af..10ac9091e 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2333,8 +2333,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,) -- cgit v1.2.3