1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

ShapedTextOptions: Fix uninitialised member variable

This commit is contained in:
attila 2025-02-03 17:01:21 +01:00 committed by Attila Szarvas
parent 50863c144e
commit bfbdc4844d

View file

@ -187,7 +187,7 @@ private:
float additiveLineSpacing = 0.0f;
bool baselineAtZero = false;
bool allowBreakingInsideWord = false;
bool trailingWhitespacesShouldFit;
bool trailingWhitespacesShouldFit = true;
int64 maxNumLines = std::numeric_limits<int64>::max();
String ellipsis;
};