aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-02-21 00:29:33 +0000
committernyamatongwe <devnull@localhost>2005-02-21 00:29:33 +0000
commita508fc2f58c15d790153c78c60a93a63c87d0c35 (patch)
tree67c6d6c2949461a4251b5882d9879c493ed341e2 /src/Editor.cxx
parent932e9f045bfc5d2dea5b30d4641289773276fb08 (diff)
downloadscintilla-mirror-a508fc2f58c15d790153c78c60a93a63c87d0c35.tar.gz
Feature request 1144928.
Avoid caret disappearing when Enter held down.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx2
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) {