Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import com.jfoenix.controls.JFXDialogLayout;
import com.jfoenix.controls.JFXTextField;
import com.jfoenix.validation.base.ValidatorBase;
import javafx.geometry.Insets;
import javafx.scene.control.Label;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
Expand Down Expand Up @@ -56,6 +57,7 @@ public InputDialogPane(String text, String initialValue, FutureCallback<String>
this.setBody(new VBox(textField));

lblCreationWarning = new Label();
lblCreationWarning.setPadding(new Insets(0, 5, 0, 0));

acceptPane = new SpinnerPane();
acceptPane.getStyleClass().add("small-spinner-pane");
Expand Down