Window is hidden also on minimize and a click on the tray icon toggles the window

This commit is contained in:
Martin Gondermann
2016-06-27 09:06:20 +02:00
parent f85cad72db
commit db4bdd0a9b
3 changed files with 43 additions and 4 deletions

View File

@@ -26,6 +26,7 @@ var loadDefault = function(version) {
showTrayIcon: false,
trayIconTheme: '',
disablewebsecurity: true,
minimizeToTray: false,
version: 1,
notifications: {
flashWindow: 0 // 0 = flash never, 1 = only when idle (after 10 seconds), 2 = always
@@ -38,7 +39,7 @@ var upgradeV0toV1 = function(config_v0) {
var config = loadDefault(1);
config.teams.push({
name: 'Primary team',
url: config_v0.url
url: config_v0.url
});
return config;
};