Reputation: 73
This is the extra space in the tab pane next to the last tab option. I am using Scenebuilder to design the app.
Upvotes: 0
Views: 961
Reputation: 2870
This extra space depends with tab pane header ,you have a way to hide it using css
.tab-header-background {
-fx-background-color:transparent
}
.tab-pane{
-fx-padding: 0 -1 -1 0
}
Upvotes: 1