diff --git a/modules/gui/qt/medialibrary/qml/MusicAlbumsGridExpandDelegate.qml b/modules/gui/qt/medialibrary/qml/MusicAlbumsGridExpandDelegate.qml index 494637af22..aebaaf937c 100644 --- a/modules/gui/qt/medialibrary/qml/MusicAlbumsGridExpandDelegate.qml +++ b/modules/gui/qt/medialibrary/qml/MusicAlbumsGridExpandDelegate.qml @@ -124,7 +124,7 @@ FocusScope { height: VLCStyle.expandCover_music_height width: VLCStyle.expandCover_music_width radius: VLCStyle.expandCover_music_radius - source: Helpers.get(model, "cover", VLCStyle.noArtAlbum) + source: Helpers.get(model, "cover", VLCStyle.noArtAlbumCover) } Widgets.ListCoverShadow { diff --git a/modules/gui/qt/medialibrary/qml/MusicArtist.qml b/modules/gui/qt/medialibrary/qml/MusicArtist.qml index a01110ccba..e240d6974f 100644 --- a/modules/gui/qt/medialibrary/qml/MusicArtist.qml +++ b/modules/gui/qt/medialibrary/qml/MusicArtist.qml @@ -134,7 +134,7 @@ FocusScope { } delegate: Widgets.GridItem { - image: model.cover || VLCStyle.noArtAlbum + image: model.cover || VLCStyle.noArtAlbumCover title: model.title || I18n.qtr("Unknown title") subtitle: model.release_year || "" textAlignHCenter: true diff --git a/modules/gui/qt/medialibrary/qml/MusicGenres.qml b/modules/gui/qt/medialibrary/qml/MusicGenres.qml index 52d4ae4b2c..2a6f1ad36d 100644 --- a/modules/gui/qt/medialibrary/qml/MusicGenres.qml +++ b/modules/gui/qt/medialibrary/qml/MusicGenres.qml @@ -157,7 +157,7 @@ FocusScope { height: width / 2 pictureWidth: width pictureHeight: height - image: model.cover || VLCStyle.noArtAlbum + image: model.cover || VLCStyle.noArtAlbumCover playCoverBorderWidth: VLCStyle.dp(3, VLCStyle.scale) dragItem: genreDragItem unselectedUnderlay: shadows.unselected diff --git a/modules/gui/qt/player/qml/TrackInfo.qml b/modules/gui/qt/player/qml/TrackInfo.qml index 8bf2b74641..fae5069903 100644 --- a/modules/gui/qt/player/qml/TrackInfo.qml +++ b/modules/gui/qt/player/qml/TrackInfo.qml @@ -36,7 +36,7 @@ Item { Layout.preferredHeight: VLCStyle.heightAlbumCover_small Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter fillMode : Image.PreserveAspectFit - source: (mainPlaylistController.currentItem.artwork && mainPlaylistController.currentItem.artwork.toString()) ? mainPlaylistController.currentItem.artwork : VLCStyle.noArtCover + source: (mainPlaylistController.currentItem.artwork && mainPlaylistController.currentItem.artwork.toString()) ? mainPlaylistController.currentItem.artwork : VLCStyle.noArtAlbumCover } ColumnLayout { diff --git a/modules/gui/qt/playlist/qml/PlaylistDelegate.qml b/modules/gui/qt/playlist/qml/PlaylistDelegate.qml index b1e123acf1..aeb76af58b 100644 --- a/modules/gui/qt/playlist/qml/PlaylistDelegate.qml +++ b/modules/gui/qt/playlist/qml/PlaylistDelegate.qml @@ -136,7 +136,7 @@ T.Control { anchors.fill: parent fillMode: Image.PreserveAspectFit - source: (model.artwork && model.artwork.toString()) ? model.artwork : VLCStyle.noArtCover + source: (model.artwork && model.artwork.toString()) ? model.artwork : VLCStyle.noArtAlbumCover visible: !statusIcon.visible }