diff options
author | Zufu Liu <unknown> | 2022-01-22 13:41:15 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2022-01-22 13:41:15 +1100 |
commit | 715a474013efcbe331ec184bf295138a7194004e (patch) | |
tree | 88d1146aeb4ca7f0fdd6b22874f8f0827cc90f5f /src/EditView.h | |
parent | a3fff53a48e63064b14f7a1842b20f260bc5a9bc (diff) | |
download | scintilla-mirror-715a474013efcbe331ec184bf295138a7194004e.tar.gz |
Feature [feature-requests:#1422] Minor improvements to line layout and wrapping.
May avoid some small costs and be clearer.
Diffstat (limited to 'src/EditView.h')
-rw-r--r-- | src/EditView.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditView.h b/src/EditView.h index e2101d745..c9364ad30 100644 --- a/src/EditView.h +++ b/src/EditView.h @@ -115,7 +115,7 @@ public: std::shared_ptr<LineLayout> RetrieveLineLayout(Sci::Line lineNumber, const EditModel &model); void LayoutLine(const EditModel &model, Surface *surface, const ViewStyle &vstyle, - LineLayout *ll, int width = LineLayout::wrapWidthInfinite); + LineLayout *ll, int width); static void UpdateBidiData(const EditModel &model, const ViewStyle &vstyle, LineLayout *ll); |