Hello, i am building the GraphicsTurorial
(https://juce.com/doc/tutorial_graphics_class) and when i tried using the drawText(x, y, height, width, ellipsis flag) figured out that when i put false in ellipsis flag, it does not work. three dots still appear.
Looks like user error. The API you are calling takes 7 parameters, with the 7th being the ellipse flag. You are inadvertently passing in ‘false’ for the Justification param.
void drawText (const String &text, int x, int y, int width, int height, Justification justificationType, bool useEllipsesIfTooBig=true)