Skip to content

Commit

Permalink
fix: use smooth scaling method for notif thumbnail
Browse files Browse the repository at this point in the history
  • Loading branch information
nullobsi committed Jul 29, 2024
1 parent 719adb5 commit 7a0b218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/trayitem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ void TrayItem::songChanged(const Song& song, bool isPlaying)
}
songNotif->setTitle(song.mainText());
songNotif->setText(song.subText());
songNotif->setImage(CurrentCover::self()->image().scaledToHeight(512));
songNotif->setImage(CurrentCover::self()->image().scaledToHeight(512, Qt::SmoothTransformation));
songNotif->setUrgency(KNotification::LowUrgency);
songNotif->sendEvent();
}
Expand Down

0 comments on commit 7a0b218

Please sign in to comment.