Disable use of HTML in system tray tooltip on Cinnamon

This commit is contained in:
Jonas Kvinge 2020-08-31 18:06:37 +02:00
parent 311e91797a
commit c30ad2819d
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ void QtSystemTrayIcon::SetNowPlaying(const Song &song, const QUrl &cover_url) {
tray_->setToolTip(song.PrettyTitleWithArtist());
#else
if (de_ == "kde") {
if (de_ == "kde" || de_ == "cinnamon" || de_ == "x-cinnamon") {
tray_->setToolTip(song.PrettyTitleWithArtist());
return;
}