nly honour 'startHidden' setting if also configured to use system tray.

This commit is contained in:
Craig Drummond
2016-02-04 23:06:51 +00:00
committed by Craig Drummond
parent a36c31191a
commit c4adba40dd
2 changed files with 2 additions and 1 deletions

View File

@@ -17,6 +17,7 @@
5. Install pre-rendered PNG icons for Linux builds.
6. Use last.fm 2.0 API for finding similar artists in dynamic playlists.
7. Fix listing of CUE files.
8. Only honour 'startHidden' setting if also configured to use system tray.
2.0.0
-----

View File

@@ -566,7 +566,7 @@ bool Settings::forceSingleClick()
bool Settings::startHidden()
{
return cfg.get("startHidden", false);
return useSystemTray() ? cfg.get("startHidden", false) : false;
}
bool Settings::showTimeRemaining()