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:
parent
50863c144e
commit
bfbdc4844d
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue