qml: update various placeholder pictures

This commit is contained in:
Pierre Lamot 2022-04-07 15:05:25 +02:00 committed by Rémi Denis-Courmont
parent 2abc4460ce
commit bc1bbb9b44
5 changed files with 5 additions and 5 deletions

View File

@ -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 {

View File

@ -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

View File

@ -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

View File

@ -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 {

View File

@ -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
}