diff options
author | nyamatongwe <devnull@localhost> | 2000-09-06 06:57:21 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-09-06 06:57:21 +0000 |
commit | d1a51de93955d167f7096c6b56b2d2b3ba5d3b02 (patch) | |
tree | 9928b2707cc75b402eb32b56e327cc1eb83199ed /src | |
parent | 5f70f578a8c2abf57d848d006277eb4e09e45569 (diff) | |
download | scintilla-mirror-d1a51de93955d167f7096c6b56b2d2b3ba5d3b02.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(); |