瀏覽代碼

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

fixes bug when startHidden was false and hasTrayIcon was true
Sebastian Stenzel 3 年之前
父節點
當前提交
2d830cdb31
共有 1 個文件被更改,包括 6 次插入5 次删除
  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);
+				}
 			}
 		});