From 6bb4ab335de99d72f2ec89596c6a3a3eee199cd7 Mon Sep 17 00:00:00 2001 From: Prince Gupta <guptaprince8832@gmail.com> Date: Mon, 7 Dec 2020 23:09:38 +0530 Subject: [PATCH] qml: add table cover radius values in VLCStyle Signed-off-by: Pierre Lamot <pierre@videolabs.io> --- modules/gui/qt/style/VLCStyle.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/gui/qt/style/VLCStyle.qml b/modules/gui/qt/style/VLCStyle.qml index f597020f394f..a019a84de3e0 100644 --- a/modules/gui/qt/style/VLCStyle.qml +++ b/modules/gui/qt/style/VLCStyle.qml @@ -71,8 +71,10 @@ Item { property int listAlbumCover_height: dp(32, scale) property int listAlbumCover_width: listAlbumCover_height * 16.0/9 + property int listAlbumCover_radius: dp(3, scale) property int trackListAlbumCover_width: dp(32, scale) property int trackListAlbumCover_heigth: dp(32, scale) + property int trackListAlbumCover_radius: dp(2, scale) property int tableCoverRow_height: Math.max(listAlbumCover_height, fontHeight_normal) + margin_xsmall * 2 property int tableRow_height: fontHeight_normal + margin_small * 2 -- GitLab