diff options
author | nyamatongwe <unknown> | 2007-07-27 01:52:48 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-07-27 01:52:48 +0000 |
commit | f76d4f14632acb5eb5ff671d97654d4032cbef7e (patch) | |
tree | 6c226067ef20848c5c18189a68be8a75c20cd1c1 /src/Editor.cxx | |
parent | 50c550fbaa760461e3262ceaa2e0ab183f94ba21 (diff) | |
download | scintilla-mirror-f76d4f14632acb5eb5ff671d97654d4032cbef7e.tar.gz |
Changed lineStates to a SplitVector so that it supports insert and delete
so inserting and deleting lines does not cause a really large number of
changed values under most circumstances leading to fewer notifications.
SVector is no longer used.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 4d10b6272..8f334d534 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -21,7 +21,6 @@ #include "Partitioning.h" #include "RunStyles.h" #include "ContractionState.h" -#include "SVector.h" #include "CellBuffer.h" #include "KeyMap.h" #include "Indicator.h" @@ -4110,6 +4109,7 @@ void Editor::NewLine() { } } SetLastXChosen(); + SetScrollBars(); EnsureCaretVisible(); // Avoid blinking during rapid typing: ShowCaretAtCurrentPosition(); |