[vlc-commits] qml: change artist list item's cover sizes to play_cover_small

Prince Gupta git at videolan.org
Mon Aug 10 12:09:44 CEST 2020


vlc | branch: master | Prince Gupta <guptaprince8832 at gmail.com> | Thu Jul 23 11:58:55 2020 +0530| [5eb739cb81ecba8738c4e65b859afe5a8027e36a] | committer: Pierre Lamot

qml: change artist list item's cover sizes to play_cover_small

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5eb739cb81ecba8738c4e65b859afe5a8027e36a
---

 modules/gui/qt/medialibrary/qml/MusicArtistsDisplay.qml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/gui/qt/medialibrary/qml/MusicArtistsDisplay.qml b/modules/gui/qt/medialibrary/qml/MusicArtistsDisplay.qml
index 9bc58df09a..408d46bc70 100644
--- a/modules/gui/qt/medialibrary/qml/MusicArtistsDisplay.qml
+++ b/modules/gui/qt/medialibrary/qml/MusicArtistsDisplay.qml
@@ -130,7 +130,7 @@ Widgets.NavigableFocusScope {
             }
 
             delegate: Widgets.ListItem {
-                height: VLCStyle.icon_normal + VLCStyle.margin_small
+                height: VLCStyle.play_cover_small + (VLCStyle.margin_xsmall * 2)
                 width: artistList.width
 
                 property bool selected: selectionModel.isSelected(artistModel.index(index, 0))
@@ -143,9 +143,9 @@ Widgets.NavigableFocusScope {
 
                 cover: Widgets.RoundImage {
                     source: model.cover || VLCStyle.noArtArtistSmall
-                    height: VLCStyle.icon_normal
-                    width: VLCStyle.icon_normal
-                    radius: VLCStyle.icon_normal
+                    height: VLCStyle.play_cover_small
+                    width: VLCStyle.play_cover_small
+                    radius: VLCStyle.play_cover_small
                 }
 
                 line1: model.name || i18n.qtr("Unknown artist")



More information about the vlc-commits mailing list