Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/modules/gui/qt/medialibrary/qml/VideoListDisplay.qml b/modules/gui/qt/medialibrary/qml/VideoListDisplay.qml
- index b514ffc713..4e1b59a062 100644
- --- a/modules/gui/qt/medialibrary/qml/VideoListDisplay.qml
- +++ b/modules/gui/qt/medialibrary/qml/VideoListDisplay.qml
- @@ -64,7 +64,7 @@ MainInterface.MainTableView {
- }]
- property var _modelMedium: [{
- - size: Math.max(1, _nbCols - 0.5),
- + size: Math.max(1, 4*_nbCols/5),
- model: ({
- criteria: mainCriteria,
- @@ -79,7 +79,7 @@ MainInterface.MainTableView {
- placeHolder: VLCStyle.noArtVideoCover,
- })
- }, {
- - size: 0.5,
- + size: _nbCols/5,
- model: ({
- criteria: "duration",
- diff --git a/modules/gui/qt/widgets/qml/TableColumns.qml b/modules/gui/qt/widgets/qml/TableColumns.qml
- index 2011ac6102..dd5e88f5af 100644
- --- a/modules/gui/qt/widgets/qml/TableColumns.qml
- +++ b/modules/gui/qt/widgets/qml/TableColumns.qml
- @@ -230,7 +230,9 @@ Item {
- width: timeTextMetric.width
- height: parent.height
- - anchors.centerIn: parent
- + //anchors.centerIn: parent
- + anchors.right: parent.right
- + anchors.rightMargin: -VLCStyle.margin_xxxsmall
- horizontalAlignment: Text.AlignHCenter
- verticalAlignment: Text.AlignVCenter
- @@ -248,7 +250,8 @@ Item {
- width: timeTextMetric.width
- height: parent.height
- - anchors.centerIn: parent
- + //anchors.centerIn: parent
- + anchors.right: parent.right
- horizontalAlignment: Text.AlignHCenter
- text: timeDel.rowModel?.[timeDel.colModel.criteria]?.formatShort() ?? ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement