I'm trying to make a multiline button, but the text gets cut off.
Button button = new Button( containerButton, SWT.PUSH );
button.setText( "Hello\nWorld" );
Is it possible to adjust the height of a button? The only thing I found was setSize( width, height ) but that's not working.
Thanks! Toby