aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/Editor.cxx2
-rw-r--r--src/SciTE.properties4
2 files changed, 4 insertions, 2 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();
diff --git a/src/SciTE.properties b/src/SciTE.properties
index 1a2bace06..c323f52cf 100644
--- a/src/SciTE.properties
+++ b/src/SciTE.properties
@@ -2,5 +2,5 @@
# settings made in SciTEGlobal.properties
command.build.directory.*.cxx=..\win32
command.build.directory.*.h=..\win32
-command.build.*.cxx=nmake -f scintilla.mak QUIET=1 DEBUG=1
-command.build.*.h=nmake -f scintilla.mak QUIET=1 DEBUG=1
+command.build.*.cxx=nmake -f scintilla.mak QUIET=1 DEBUG=0
+command.build.*.h=nmake -f scintilla.mak QUIET=1 DEBUG=0