aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-09-06 06:57:21 +0000
committernyamatongwe <unknown>2000-09-06 06:57:21 +0000
commite26000be7f4cff84eed59962e9ee03d9b65bd799 (patch)
tree9928b2707cc75b402eb32b56e327cc1eb83199ed /src
parent9ae60c7862552c0b33ed6cbfc3bc339a01c71ab9 (diff)
downloadscintilla-mirror-e26000be7f4cff84eed59962e9ee03d9b65bd799.tar.gz
Removed a couple of completed items from the TODO list and added a couple
of bugs. Bug wuth not redrawing caret sometimes when performing undo fixed.
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 9b41af798..6d2676ffb 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -1594,6 +1594,7 @@ void Editor::SelectAll() {
void Editor::Undo() {
if (pdoc->CanUndo()) {
+ InvalidateCaret();
int newPos = pdoc->Undo();
SetEmptySelection(newPos);
EnsureCaretVisible();