aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2009-04-02 02:32:47 +0000
committernyamatongwe <devnull@localhost>2009-04-02 02:32:47 +0000
commitc2efc9d4c2883c6a0b013e0d77bff19939483c84 (patch)
treef01cf496456589dd4f9d58b6891add95125c2d4a /src/Editor.cxx
parentc5842cf6443eaf1dc107e9cd234b801047031593 (diff)
downloadscintilla-mirror-c2efc9d4c2883c6a0b013e0d77bff19939483c84.tar.gz
Bug #2723006 flickering caret with Tab.
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 0a619d9a6..78e0429d4 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -4536,6 +4536,7 @@ int Editor::KeyCommand(unsigned int iMessage) {
SetLastXChosen();
}
EnsureCaretVisible();
+ ShowCaretAtCurrentPosition(); // Avoid blinking
break;
case SCI_BACKTAB:
Indent(false);
@@ -4543,6 +4544,7 @@ int Editor::KeyCommand(unsigned int iMessage) {
SetLastXChosen();
}
EnsureCaretVisible();
+ ShowCaretAtCurrentPosition(); // Avoid blinking
break;
case SCI_NEWLINE:
NewLine();