diff options
| author | Neil <nyamatongwe@gmail.com> | 2019-06-22 10:51:29 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2019-06-22 10:51:29 +1000 |
| commit | 4c8a1f741c73911eff813a78c08fa88427eec38b (patch) | |
| tree | a5b276ee266c723adc22e1afe8fa47f7cb0bb80c /include/Scintilla.iface | |
| parent | 8b8e1f383f0dbabc5e2f4666f4c5aa8860a91848 (diff) | |
| download | scintilla-mirror-4c8a1f741c73911eff813a78c08fa88427eec38b.tar.gz | |
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.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 3 |
1 files changed, 2 insertions, 1 deletions
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,) |
