aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-10-06 05:27:30 +0000
committernyamatongwe <devnull@localhost>2000-10-06 05:27:30 +0000
commit47ba95a1a1ff2e33577b6134e4ef8385fbc6562b (patch)
treedd0491c0318629d3847dae4c3a794ad7659037ce /src
parent5c41080720d60f7cb87b31e091d6e2ce33864431 (diff)
downloadscintilla-mirror-47ba95a1a1ff2e33577b6134e4ef8385fbc6562b.tar.gz
Added call to NotifyMove in MovePositionTo to cause SCN_POSCHANGED to be
sent.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index febe69b00..6ab2196c7 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -475,6 +475,7 @@ int Editor::MovePositionTo(int newPos, bool extend) {
}
EnsureCaretVisible();
ShowCaretAtCurrentPosition();
+ NotifyMove(newPos);
return 0;
}