From 0fae9a77c20679b704e1fd1c1c12e68c28c2b026 Mon Sep 17 00:00:00 2001 From: Yuya Ochiai Date: Tue, 27 Dec 2016 23:37:38 +0900 Subject: [PATCH] Fix missing initial theme of linux tray icon Close #404 --- CHANGELOG.md | 3 +++ src/common/settings.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d89192a..60e4d922 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ Release date: TBD #### Windows - Fixed an issue where an unexpected window appears while install/uninstalling +#### Linux +- Fixed missing initial theme of tray icon + ---- ## Release v3.5.0 diff --git a/src/common/settings.js b/src/common/settings.js index f3905889..2a921dbb 100644 --- a/src/common/settings.js +++ b/src/common/settings.js @@ -18,7 +18,7 @@ function loadDefault(version) { teams: [], hideMenuBar: false, showTrayIcon: false, - trayIconTheme: '', + trayIconTheme: 'light', disablewebsecurity: true, minimizeToTray: false, toggleWindowOnTrayIconClick: false,