Skip to content
Snippets Groups Projects
Commit 668ce4b0 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

Fix background radius for drag overlay

parent 1e5a2a53
Branches
Tags
No related merge requests found
......@@ -31,7 +31,7 @@ public class FileDragOptionView implements PadContentFactory.PadContentTypeChoos
optionPane = new HBox();
optionPane.prefWidthProperty().bind(parent.widthProperty());
optionPane.prefHeightProperty().bind(parent.heightProperty());
optionPane.setBackground(new Background(new BackgroundFill(new Color(0.2, 0.2, 0.2, 0.8), new CornerRadii(10), new Insets(0))));
optionPane.setBackground(new Background(new BackgroundFill(new Color(0.2, 0.2, 0.2, 0.8), new CornerRadii(5), new Insets(0))));
optionPane.setAlignment(Pos.CENTER);
optionPane.setPadding(new Insets(5));
optionPane.setSpacing(5);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment