mirror of https://github.com/procxx/kepka.git
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:
parent
15befa98c4
commit
4384c80961
Telegram/SourceFiles/platform/linux
|
@ -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)));
|
||||
|
||||
|
|
Loading…
Reference in New Issue