mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-09 16:43:00 +01:00
Show just the artist and title in the system tray tooltip on Windows since it doesn't support HTML
This commit is contained in:
parent
7a0540ab1c
commit
c6829feb82
@ -132,6 +132,12 @@ void QtSystemTrayIcon::SetVisible(bool visible) {
|
||||
}
|
||||
|
||||
void QtSystemTrayIcon::SetNowPlaying(const Song& song, const QString& image_path) {
|
||||
#ifdef Q_WS_WIN
|
||||
// Windows doesn't support HTML in tooltips, so just show something basic
|
||||
tray_->setToolTip(song.PrettyTitleWithArtist());
|
||||
return;
|
||||
#endif
|
||||
|
||||
int columns = image_path == NULL ? 1 : 2;
|
||||
|
||||
QString clone = pattern_;
|
||||
@ -166,4 +172,4 @@ void QtSystemTrayIcon::SetNowPlaying(const Song& song, const QString& image_path
|
||||
|
||||
void QtSystemTrayIcon::ClearNowPlaying() {
|
||||
tray_->setToolTip(QCoreApplication::applicationName());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user