jughyd / GitFx

Gitfx Java FX application
Apache License 2.0
18 stars 29 forks source link

UI Issue: Toolbar Width #47

Closed ghost closed 9 years ago

ghost commented 9 years ago

The toolbar is not anchored to the main parent. It should be anchored left: 0, top: 0, right: 0. This will allow the main stage to be resized as much as required and the toolbar will resize with the stage.

This is the error in the layout: screenshot from 2015-07-27 04 01 38

To fix, the ToolBar FXML should have these properties. AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" These can be added manually or done at the top of the Properties accordion in Scene Builder.

Thanks.

rohitvvv commented 9 years ago

This is fixed now.