mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 09:00:26 +00:00
Fix validation graphics being in front of everything
This commit is contained in:
parent
9fbaa5a50b
commit
cb247316ee
1 changed files with 5 additions and 1 deletions
|
@ -35,6 +35,7 @@ import javafx.scene.layout.VBox;
|
|||
import javafx.stage.Stage;
|
||||
import lombok.AccessLevel;
|
||||
import lombok.experimental.FieldDefaults;
|
||||
import net.synedra.validatorfx.GraphicDecorationStackPane;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
@ -397,6 +398,9 @@ public class StoreCreationComp extends DialogComp {
|
|||
var top = new VBox(providerChoice.createRegion(), new Spacer(7, Orientation.VERTICAL), sep);
|
||||
top.getStyleClass().add("top");
|
||||
layout.setTop(top);
|
||||
return layout;
|
||||
|
||||
var valSp = new GraphicDecorationStackPane();
|
||||
valSp.getChildren().add(layout);
|
||||
return valSp;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue