Prefer appindicator only on Unity and Pantheon.

Commit dcd6028e91 introduced a regression which caused
appindicator tray icon to be preferred everywhere else.
This commit is contained in:
John Preston 2017-04-04 12:58:44 +03:00
parent 15befa98c4
commit 4384c80961
1 changed files with 1 additions and 1 deletions
Telegram/SourceFiles/platform/linux

View File

@ -376,7 +376,7 @@ void MainWindow::updateIconCounters() {
void MainWindow::LibsLoaded() {
noQtTrayIcon = !DesktopEnvironment::TryQtTrayIcon();
tryAppIndicator = !DesktopEnvironment::PreferAppIndicatorTrayIcon();
tryAppIndicator = DesktopEnvironment::PreferAppIndicatorTrayIcon();
LOG(("Tray Icon: Try Qt = %1, Prefer appindicator = %2").arg(Logs::b(!noQtTrayIcon)).arg(Logs::b(tryAppIndicator)));