aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-10-04 10:52:08 +1000
committerNeil <nyamatongwe@gmail.com>2014-10-04 10:52:08 +1000
commit87b7b29befbbd9447cd63984163e3cc55cf913f1 (patch)
tree21fa9663070545e840d4f82b0cfb06a667c9e964 /src
parent1a17a409316fab10be74e713c88a828d5bd4c2b7 (diff)
downloadscintilla-mirror-87b7b29befbbd9447cd63984163e3cc55cf913f1.tar.gz
Bug [#1657]. Prevent caret blinking when holding down Delete key.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx1
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() {