Fix wrong developer mode condition

This commit is contained in:
Clément Fournier
2019-02-23 21:33:16 +01:00
parent cd7ca8055f
commit 8d7b885d83

View File

@@ -112,7 +112,7 @@ public class Designer extends Application {
stage.setScene(scene); stage.setScene(scene);
if (owner.isDeveloperMode()) { if (!owner.isDeveloperMode()) {
// only close after initialization succeeded. // only close after initialization succeeded.
// but before stage.show to reduce unwanted noise // but before stage.show to reduce unwanted noise
System.err.close(); System.err.close();