[vlc-devel] [PATCH 16/26] qml: add borders around video expand panel

Prince Gupta guptaprince8832 at gmail.com
Thu Dec 17 17:26:14 UTC 2020


---
 .../medialibrary/qml/VideoInfoExpandPanel.qml | 21 ++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/modules/gui/qt/medialibrary/qml/VideoInfoExpandPanel.qml b/modules/gui/qt/medialibrary/qml/VideoInfoExpandPanel.qml
index 8f577f12ad..04d82e116b 100644
--- a/modules/gui/qt/medialibrary/qml/VideoInfoExpandPanel.qml
+++ b/modules/gui/qt/medialibrary/qml/VideoInfoExpandPanel.qml
@@ -41,9 +41,28 @@ Widgets.NavigableFocusScope {
 
         implicitHeight: contentLayout.implicitHeight + ( VLCStyle.margin_normal * 2 )
         width: parent.width
-        clip: true
         color: VLCStyle.colors.bgAlt
 
+        Rectangle {
+            anchors {
+                top: parent.top
+                left: parent.left
+                right: parent.right
+            }
+            color: VLCStyle.colors.buttonBorder
+            height: VLCStyle.expandDelegate_border
+        }
+
+        Rectangle {
+            anchors {
+                bottom: parent.bottom
+                left: parent.left
+                right: parent.right
+            }
+            color: VLCStyle.colors.buttonBorder
+            height: VLCStyle.expandDelegate_border
+        }
+
         RowLayout {
             id: contentLayout
 
-- 
2.25.1



More information about the vlc-devel mailing list