Skip to content

Commit

Permalink
fix(microsoft): ok cannot be clicked. Closes #1729.
Browse files Browse the repository at this point in the history
  • Loading branch information
huanghongxun committed Sep 24, 2022
1 parent 0396e96 commit 8d830db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

public class DialogPane extends JFXDialogLayout {
private final StringProperty title = new SimpleStringProperty();
private final BooleanProperty valid = new SimpleBooleanProperty();
private final BooleanProperty valid = new SimpleBooleanProperty(true);
protected final SpinnerPane acceptPane = new SpinnerPane();
protected final JFXButton cancelButton = new JFXButton();
protected final Label warningLabel = new Label();
Expand Down

0 comments on commit 8d830db

Please sign in to comment.