This is a feature release of ScalaFX-Extras.
New features
- ImageDisplay: add the ability to display simple overlays on top of the images [#38]
API Breaking Changes
- ImageDisplay:
image
assignment is now anOption
, the JavaFXnull
is not acceptedimageDisplay.image = image
will need to be changed toimageDisplay.setImage(image)
orimageDisplay.image = Option(image)
imageDisplay.image = null
will need to be changed toimageDisplay.image = None
Bug fixes
- ImageDisplay: fix some issues with "zoom-to-fit" and "flip" applied at the same time
To post questions, please use Project Discussions or ScalaFX Users Group
Full Changelog: v.0.10.1...v.0.11.0