[vlc-commits] [Git][videolan/vlc][master] 3 commits: qml: set missing parent of HorizontalResizeHandle
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Sat Aug 5 08:40:26 UTC 2023
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
756c4653 by Fatih Uzunoglu at 2023-08-05T08:25:05+00:00
qml: set missing parent of HorizontalResizeHandle
- - - - -
49951b3a by Fatih Uzunoglu at 2023-08-05T08:25:05+00:00
qml: adjust fill properties of layouts in PlaylistListView
- - - - -
8babdefb by Fatih Uzunoglu at 2023-08-05T08:25:05+00:00
qml: use Column instead of ColumnLayout in PlaylistListView
Layouts are very buggy, better to use Column directly.
- - - - -
2 changed files:
- modules/gui/qt/player/qml/Player.qml
- modules/gui/qt/playlist/qml/PlaylistListView.qml
Changes:
=====================================
modules/gui/qt/player/qml/Player.qml
=====================================
@@ -616,6 +616,8 @@ FocusScope {
Widgets.HorizontalResizeHandle {
id: resizeHandle
+ parent: playlistView
+
anchors {
top: parent.top
bottom: parent.bottom
=====================================
modules/gui/qt/playlist/qml/PlaylistListView.qml
=====================================
@@ -174,9 +174,8 @@ T.Pane {
readonly property ListView listView: listView
- ColumnLayout {
- id: headerTextLayout
-
+ Column {
+ Layout.fillHeight: false
Layout.fillWidth: true
Layout.leftMargin: VLCStyle.margin_normal
@@ -210,6 +209,7 @@ T.Pane {
RowLayout {
visible: model.count !== 0
+ Layout.fillHeight: false
Layout.topMargin: VLCStyle.margin_normal
Layout.bottomMargin: VLCStyle.margin_xxsmall
Layout.leftMargin: VLCStyle.margin_normal
@@ -645,6 +645,7 @@ T.Pane {
PlaylistToolbar {
id: toolbar
+ Layout.fillHeight: false
Layout.fillWidth: true
}
}
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/5294b23274ece7f92f055fe3914e2e98cdfadb19...8babdefbe2385b42c1307b06a785012edbc1a533
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/5294b23274ece7f92f055fe3914e2e98cdfadb19...8babdefbe2385b42c1307b06a785012edbc1a533
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list