diff options
author | Zufu Liu <unknown> | 2023-02-12 11:26:48 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2023-02-12 11:26:48 +1100 |
commit | 5848ae9e694b196e24f10e830c517e0f613b80ae (patch) | |
tree | daf86b3a99c25733c884d512bace47ea12c5dd6c /src/PositionCache.h | |
parent | f2455fabf07576db6224262ce8b62a59429534e3 (diff) | |
download | scintilla-mirror-5848ae9e694b196e24f10e830c517e0f613b80ae.tar.gz |
Bug [#2378]. Fix overlapping of text with line end wrap marker.
Diffstat (limited to 'src/PositionCache.h')
-rw-r--r-- | src/PositionCache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PositionCache.h b/src/PositionCache.h index e830b67dc..231b9791e 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -107,7 +107,7 @@ public: Interval Span(int start, int end) const noexcept; Interval SpanByte(int index) const noexcept; int EndLineStyle() const noexcept; - void WrapLine(const Document *pdoc, Sci::Position posLineStart, Wrap wrapState); + void WrapLine(const Document *pdoc, Sci::Position posLineStart, Wrap wrapState, XYPOSITION wrapWidth); }; struct ScreenLine : public IScreenLine { |