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 | |
parent | 7c24829a955759a2b4005b01e643c96b7c724047 (diff) | |
download | scintilla-mirror-a7ebb623baeb88763d15257091d48d8d6ad6e192.tar.gz |
Bug [#1657]. Prevent caret blinking when holding down Delete key.
-rw-r--r-- | doc/ScintillaHistory.html | 12 | ||||
-rw-r--r-- | src/Editor.cxx | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index cf0b239aa..57039868f 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -478,6 +478,18 @@ Released 30 September 2014. </li> <li> + Prevent caret blinking when holding down Delete key. + <a href="http://sourceforge.net/p/scintilla/bugs/1657/">Bug #1657</a>. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite351.zip?download">Release 3.5.1</a> + </h3> + <ul> + <li> + Released 30 September 2014. + </li> + <li> BibTeX lexer added. <a href="http://sourceforge.net/p/scintilla/feature-requests/1071/">Feature #1071.</a> </li> 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() { |