forked from j62/ctbrec
1
0
Fork 0

Reposition popover slightly for the new SVG background

This commit is contained in:
0xboobface 2018-11-25 15:58:33 +01:00
parent 6282cd76bc
commit cab0ac469b
1 changed files with 2 additions and 2 deletions

View File

@ -160,10 +160,10 @@ public class ThumbOverviewTab extends Tab implements TabSelectionListener {
popover.setMinWidth(400);
popover.maxHeightProperty().bind(popover.minHeightProperty());
popover.prefHeightProperty().bind(popover.minHeightProperty());
popover.setMinHeight(400);
popover.setMinHeight(450);
popover.pushPage(popoverTreelist);
StackPane.setAlignment(popover, Pos.TOP_RIGHT);
StackPane.setMargin(popover, new Insets(50, 50, 0, 0));
StackPane.setMargin(popover, new Insets(35, 50, 0, 0));
HBox topBar = new HBox(5);
HBox.setHgrow(filterInput, Priority.ALWAYS);