Skip to content

Commit b2d2239

Browse files
fabiencastancbentejac
authored andcommitted
[ui] fix layout issue: ensure the fit is updated
Without this fix, the width side is initialize correctly but not updated when the window is resized.
1 parent fd6ffdd commit b2d2239

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meshroom/ui/qml/Application.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -985,15 +985,15 @@ Page {
985985
NodeChunks {
986986
id: chunksListView
987987
height: 6
988-
width: parent.width
988+
Layout.fillWidth: true
989989
model: _reconstruction ? _reconstruction.sortedDFSChunks : null
990990
highlightChunks: false
991991
}
992992

993993
MSplitView {
994994
id: topBottomSplit
995995
Layout.fillHeight: true
996-
width: parent.width
996+
Layout.fillWidth: true
997997

998998
orientation: Qt.Vertical
999999

0 commit comments

Comments
 (0)