diff options
author | nyamatongwe <unknown> | 2009-06-09 03:48:29 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-06-09 03:48:29 +0000 |
commit | 84d7ef180e0cdbe2f1653733138b27143dee3e32 (patch) | |
tree | b7b2b6ebe1870c28d25b14028085da25319ec14e /src/PositionCache.cxx | |
parent | 1574bf78b43284db9f4ff88c1c77d82ce6fa79ea (diff) | |
download | scintilla-mirror-84d7ef180e0cdbe2f1653733138b27143dee3e32.tar.gz |
Feature #2796119 Indent wrapped lines to first line. From maXmo.
Diffstat (limited to 'src/PositionCache.cxx')
-rw-r--r-- | src/PositionCache.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/PositionCache.cxx b/src/PositionCache.cxx index cd5becf1a..71b408236 100644 --- a/src/PositionCache.cxx +++ b/src/PositionCache.cxx @@ -61,7 +61,8 @@ LineLayout::LineLayout(int maxLineLength_) : hsStart(0), hsEnd(0), widthLine(wrapWidthInfinite), - lines(1) { + lines(1), + wrapIndent(0) { Resize(maxLineLength_); } |