diff options
author | Neil <nyamatongwe@gmail.com> | 2014-10-04 10:52:08 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-10-04 10:52:08 +1000 |
commit | a7ebb623baeb88763d15257091d48d8d6ad6e192 (patch) | |
tree | dffd34bd1a0d8cbde77b4bd95d52be083580e1b2 /src/Editor.cxx | |
parent | 7c24829a955759a2b4005b01e643c96b7c724047 (diff) | |
download | scintilla-mirror-a7ebb623baeb88763d15257091d48d8d6ad6e192.tar.gz |
Bug [#1657]. Prevent caret blinking when holding down Delete key.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 80f96a7c8..ebe65f1fa 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -2106,6 +2106,7 @@ void Editor::Clear() { ClearSelection(); } sel.RemoveDuplicates(); + ShowCaretAtCurrentPosition(); // Avoid blinking } void Editor::SelectAll() { |