main-window-linux: parse XDG_CURRENT_DESKTOP as colon separated list ()

As per freedesktop specifications¹, $XDG_CURRENT_DESKTOP is a
"colon-separated list of strings". Thus we need to parse it in that way.

[1] https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html

Signed-off-by: Marco Trevisan <mail@3v1n0.net> (github: 3v1n0)
This commit is contained in:
Marco Trevisan 2016-11-22 07:46:08 +01:00 committed by John Preston
parent 9dc660c8ec
commit d460897f84
1 changed files with 3 additions and 3 deletions
Telegram/SourceFiles/platform/linux

View File

@ -368,9 +368,9 @@ bool MainWindow::psHasNativeNotifications() {
}
void MainWindow::LibsLoaded() {
QString cdesktop = QString(getenv("XDG_CURRENT_DESKTOP")).toLower();
noQtTrayIcon = (cdesktop == qstr("pantheon")) || (cdesktop == qstr("gnome"));
tryAppIndicator = (cdesktop == qstr("xfce"));
QStringList cdesktop = QString(getenv("XDG_CURRENT_DESKTOP")).toLower().split(':');
noQtTrayIcon = (cdesktop.contains(qstr("pantheon"))) || (cdesktop.contains(qstr("gnome")));
tryAppIndicator = cdesktop.contains(qstr("xfce"));
if (noQtTrayIcon) cSetSupportTray(false);