-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
8u301
-
generic
-
generic
A DESCRIPTION OF THE PROBLEM :
Platform.runLater(() -> {
stage.close();
});
// After closing stage, runLater does work
Platform.runLater(() -> {
System.out.println("This message is not sent to the console :(");
stage.show();
});
Platform.runLater(() -> {
stage.close();
});
// After closing stage, runLater does work
Platform.runLater(() -> {
System.out.println("This message is not sent to the console :(");
stage.show();
});