diff options
author | nyamatongwe <unknown> | 2000-09-06 06:57:21 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-09-06 06:57:21 +0000 |
commit | e26000be7f4cff84eed59962e9ee03d9b65bd799 (patch) | |
tree | 9928b2707cc75b402eb32b56e327cc1eb83199ed /src | |
parent | 9ae60c7862552c0b33ed6cbfc3bc339a01c71ab9 (diff) | |
download | scintilla-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.cxx | 1 |
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(); |