diff options
author | nyamatongwe <devnull@localhost> | 2002-11-20 08:45:38 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-11-20 08:45:38 +0000 |
commit | 0a0ceae90e4f7b854e5213b431e1c5b41a89501e (patch) | |
tree | 6527b25619ee853f7376b8b77538440e50d99669 /src | |
parent | d02d951237ebdb5d00595e93c68e24c78add2c13 (diff) | |
download | scintilla-mirror-0a0ceae90e4f7b854e5213b431e1c5b41a89501e.tar.gz |
Changed default layout caching to just the caret line.
Diffstat (limited to 'src')
-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 1126b27ff..003c1f8be 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -371,7 +371,7 @@ Editor::Editor() { wrapWidth = LineLayout::wrapWidthInfinite; docLineLastWrapped = -1; - llc.SetLevel(LineLayoutCache::llcDocument); + llc.SetLevel(LineLayoutCache::llcCaret); } Editor::~Editor() { |