-
Type:
Bug
-
Resolution: Not an Issue
-
Priority:
P4
-
None
-
Affects Version/s: 8u301
-
Component/s: javafx
-
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();
});