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 | 8aa1cae911d5323f2e435c37ef5132c90f16ed55 (patch) | |
tree | f805889c17afb975c775e0e0dba350c46c8a6d4a /src/ViewStyle.h | |
parent | 53759e5436863c0bb4e6c015e67e93c711250644 (diff) | |
download | scintilla-mirror-8aa1cae911d5323f2e435c37ef5132c90f16ed55.tar.gz |
Bug [#2106]. Place line caret in correct location for line caret with block OVR.
That is for CARETSTYLE_LINE | CARETSTYLE_BLOCK mode.
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: |