Variable BubbleMessageComponent width

the textLayout of the BubbleMessageComponent is limited to 256 pixels :

void BubbleMessageComponent::createLayout (const AttributedString& text)
{
    textLayout.createLayoutWithBalancedLineLengths (text, 256);
}

this is really small, and makes it impossible to display short message on a single line as soon as you have more that 5/6 words tipically.

Could we have a method to change that max width?