[vlc-devel] [PATCH 19/29] qml: change artist list item's cover sizes to play_cover_small

Prince Gupta guptaprince8832 at gmail.com
Tue Aug 4 13:34:52 CEST 2020


---
 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")
-- 
2.25.1



More information about the vlc-devel mailing list