diff options
author | nyamatongwe <unknown> | 2005-02-21 00:29:33 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-02-21 00:29:33 +0000 |
commit | 245507923b820177e19c5be7244e5863d4ebeb73 (patch) | |
tree | 67c6d6c2949461a4251b5882d9879c493ed341e2 /src | |
parent | 50ef2d89880cb9fb737b068c31f996f6d8fd9ba0 (diff) | |
download | scintilla-mirror-245507923b820177e19c5be7244e5863d4ebeb73.tar.gz |
Feature request 1144928.
Avoid caret disappearing when Enter held down.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index af0a73a19..cd4f63130 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -3975,6 +3975,8 @@ void Editor::NewLine() { } SetLastXChosen(); EnsureCaretVisible(); + // Avoid blinking during rapid typing: + ShowCaretAtCurrentPosition(); } void Editor::CursorUpOrDown(int direction, selTypes sel) { |