I’m trying to remove the array from BubbleMessageComponent, by setting arrowLength to 0. Seems to have no effect whatever value I give it.
In my constructor:
bubbleMessage.addToDesktop(0);
bubbleMessage.setPosition (myComponent, 15, 0);
bubbleMessage.setAllowedPlacement (BubbleMessageComponent::below);
And then when I want to show the message:
bubbleMessage.showAt (myComponent,
AttributedString ("My message"), 1500);
I’ve followed the code through and arrowLength is used, but it does not seem to affect the actual size of the arrow.
