Skip to content
Open
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 @@ -45,9 +45,9 @@ public static Alert createAlert(Throwable exception, String title, String descri
return createAlert(Alert.AlertType.ERROR, title, description, exception.getMessage()
/*
// Decided in Issue https://github.com/VerifAPS/stvs/issues/20, that the expandable content
// should not be shown, instead it should be just logged
, stackTrace
//*/);
// should not be shown, instead it should be just logged */
/* MU: give it another try */
, stackTrace);
}

/**
Expand Down Expand Up @@ -109,6 +109,12 @@ public static Alert createAlert(Alert.AlertType type, String title, String descr

alert.getDialogPane().setId("AlertDialogPane_" + type.toString());

// MU: possible resolution to #20
alert.setResizable(true);
alert.resizableProperty().addListener((x,o,n) -> {
alert.setResizable(true);
});

return alert;
}
}