You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally reported by: Luca Domenichini (Bitbucket: mimmoz81, GitHub: mimmoz81)
It would be useful to have the title of the preview window (Ctrl + P) to report the size x of the preview window.
This way, one can better see how the scene will render at specific resolution..
Implementation is effectively this or a variation of. Note that this tracks the stage size, rather than scene size.
In PreviewWindowController:
getStage().titleProperty().bind(
new SimpleStringProperty(Utils.makeTitle(fxomDocument))
.concat(getStage().widthProperty().asString(" (%.1f x "))
.concat(getStage().heightProperty().asString("%.1f)"))
);
Just need to confirm this feature is worth implementing.
Originally reported by: Luca Domenichini (Bitbucket: mimmoz81, GitHub: mimmoz81)
It would be useful to have the title of the preview window (Ctrl + P) to report the size x of the preview window.
This way, one can better see how the scene will render at specific resolution..
The text was updated successfully, but these errors were encountered: