Skip to content
Snippets Groups Projects
Commit ba836cfa authored by Prince Gupta's avatar Prince Gupta :speech_balloon: Committed by Jean-Baptiste Kempf
Browse files

qml/MainDisplay: improve playlist border placement

place it such that it won't interfere with "focus" rect of
PlaylistDelegate
parent ea02fa5f
No related branches found
No related tags found
1 merge request!1073qml: minor playlistview fixes
......@@ -320,11 +320,27 @@ FocusScope {
}
]
Rectangle {
id: playlistLeftBorder
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: parent.left
width: VLCStyle.border
color: VLCStyle.colors.border
}
PL.PlaylistListView {
id: playlist
anchors.fill: parent
anchors {
top: parent.top
bottom: parent.bottom
left: playlistLeftBorder.right
right: parent.right
}
focus: true
rightPadding: VLCStyle.applicationHorizontalMargin
......@@ -343,17 +359,6 @@ FocusScope {
stackView.forceActiveFocus()
}
Rectangle {
// id: playlistLeftBorder
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: parent.left
width: VLCStyle.border
color: VLCStyle.colors.border
}
Widgets.HorizontalResizeHandle {
id: resizeHandle
......
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