How to prevent text from turning to ellipsis on small buttons in JavaFX?

后端 未结 3 1885
萌比男神i
萌比男神i 2020-12-09 19:38

If I make button relatively small, it\'s caption turns to ellipsis.

How to turn off this feature?

3条回答
  •  粉色の甜心
    2020-12-09 20:01

    in your label/button you can use the textOverrun property to turn off ellipsis.

    textOverrun.set(OverrunStyle.CLIP);
    

    this is probably a bit late for you, so i am putting it here for lone wanderers digging up this question.

提交回复
热议问题