Skip to content
Snippets Groups Projects
Commit adeb531c authored by Prince Gupta's avatar Prince Gupta :speech_balloon: Committed by Pierre Lamot
Browse files

qml: add borders around video expand panel


Signed-off-by: default avatarPierre Lamot <pierre@videolabs.io>
parent f44b4191
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment