Do not minimize to systray by default

This commit is contained in:
Laurent Clouet
2021-05-15 16:47:20 +02:00
parent ead2f3267a
commit 112d1ad78f
2 changed files with 2 additions and 2 deletions

View File

@@ -97,7 +97,7 @@ import lombok.Data;
this.shutdownMode = "soft";
this.extras = "";
this.autoSignIn = false;
this.useSysTray = true;
this.useSysTray = false;
this.UIType = null;
this.theme = null;
}

View File

@@ -470,7 +470,7 @@ public class SettingsLoader {
this.renderbucketSize = null;
this.cacheDir = null;
this.autoSignIn = null;
this.useSysTray = null;
this.useSysTray = String.valueOf(defaultConfigValues.isUseSysTray());
this.ui = null;
this.priority = defaultConfigValues.getPriority(); // must be the same default as Configuration
this.ram = null;