Add bold to albums by label

This commit is contained in:
Jonas Kvinge 2018-09-02 12:50:28 +02:00
parent 0b3d84a65e
commit f86b10c71f
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ void ContextView::UpdateSong() {
if (albumlist.count() > 1) {
ui_->label_play_albums->setVisible(true);
ui_->label_play_albums->setMinimumSize(0, 20);
ui_->label_play_albums->setText(QString("Albums by %1").arg( song_.artist().toHtmlEscaped()));
ui_->label_play_albums->setText(QString("<b>Albums by %1</b>").arg( song_.artist().toHtmlEscaped()));
ui_->label_play_albums->setStyleSheet("background-color: #3DADE8; color: rgb(255, 255, 255); font: 11pt;");
for (CollectionBackend::Album album : albumlist) {
SongList songs = app_->collection_backend()->GetSongs(song_.artist(), album.album_name, opt);