diff options
| author | Neil <nyamatongwe@gmail.com> | 2019-06-21 07:16:45 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2019-06-21 07:16:45 +1000 |
| commit | 8b8e1f383f0dbabc5e2f4666f4c5aa8860a91848 (patch) | |
| tree | f398bde19d8e842fd4a4185f89775de5f876ec33 /src/ViewStyle.h | |
| parent | 1db15a4f04a7c337b8061efe3ef033b21bba0cec (diff) | |
| download | scintilla-mirror-8b8e1f383f0dbabc5e2f4666f4c5aa8860a91848.tar.gz | |
Backport: Bug [#2106]. Place line caret in correct location for line caret with block OVR.
That is for CARETSTYLE_LINE | CARETSTYLE_BLOCK mode.
Backport of changeset 7608:b725657be4ae.
Diffstat (limited to 'src/ViewStyle.h')
| -rw-r--r-- | src/ViewStyle.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h index 587eb976a..0235b3651 100644 --- a/src/ViewStyle.h +++ b/src/ViewStyle.h @@ -201,6 +201,7 @@ public: enum class CaretShape { invisible, line, block, bar }; bool IsBlockCaretStyle() const noexcept; + bool DrawCaretInsideSelection(bool inOverstrike, bool imeCaretBlockOverride) const noexcept; CaretShape CaretShapeForMode(bool inOverstrike) const noexcept; private: |
