Browse Source

easier-to-understand if/else for combinations of "startHidden" and "hasTrayIcon"

fixes bug when startHidden was false and hasTrayIcon was true
Sebastian Stenzel 3 years ago
parent
commit
2d830cdb31
1 changed files with 6 additions and 5 deletions
  1. 6 5
      src/main/java/org/cryptomator/ui/fxapp/FxApplication.java

+ 6 - 5
src/main/java/org/cryptomator/ui/fxapp/FxApplication.java

@@ -61,11 +61,12 @@ public class FxApplication {
 
 		// show main window
 		appWindows.showMainWindow().thenAccept(stage -> {
-			boolean hide = settings.startHidden().get();
-			if (hasTrayIcon) {
-				stage.hide();
-			} else {
-				stage.setIconified(hide);
+			if (settings.startHidden().get()) {
+				if (hasTrayIcon) {
+					stage.hide();
+				} else {
+					stage.setIconified(true);
+				}
 			}
 		});