Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

potential fix for #20 #46

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
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;
}
}