Disable systray on OS X.

It's not useful on that platform.

Refs #326
This commit is contained in:
Felix Geyer 2015-10-10 17:08:56 +02:00
parent 316a7e6fb7
commit e98c30f633
2 changed files with 10 additions and 0 deletions

View file

@ -599,6 +599,11 @@ void MainWindow::lockDatabasesAfterInactivity()
bool MainWindow::isTrayIconEnabled() const
{
#ifdef Q_OS_MAC
// systray not useful on OS X
return false;
#else
return config()->get("GUI/ShowTrayIcon").toBool()
&& QSystemTrayIcon::isSystemTrayAvailable();
#endif
}