mkpaz / atlantafx

Modern JavaFX CSS theme collection with additional controls.
https://mkpaz.github.io/atlantafx
MIT License
791 stars 64 forks source link

NotificationSkin #56

Closed lwdillon closed 1 year ago

lwdillon commented 1 year ago

The maximum width of NotificationSkin's messageText is currently: messagetext.setmaxWidth (Region.USE_PREF_SIZE); It should be set to messageText.setMaxWidth(Double.MAX_VALUE);

mkpaz commented 1 year ago

Maybe. It was necessary for correct text wrapping. In the final skin implementation, I'm not sure if it still is, so it should be tested. But why change it anyway? Is something not working for you?

lwdillon commented 1 year ago

When the text is small, it does not automatically stretch, see the image.

1686203873950

mkpaz commented 1 year ago

Yes, I can confirm that. Thanks!