Skip to content

Commit

Permalink
[ui] fix layout issue: ensure the fit is updated
Browse files Browse the repository at this point in the history
Without this fix, the width side is initialize correctly but not updated
when the window is resized.
  • Loading branch information
fabiencastan committed Oct 14, 2024
1 parent fc85f21 commit c3da8b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meshroom/ui/qml/Application.qml
Original file line number Diff line number Diff line change
Expand Up @@ -985,15 +985,15 @@ Page {
NodeChunks {
id: chunksListView
height: 6
width: parent.width
Layout.fillWidth: true
model: _reconstruction ? _reconstruction.sortedDFSChunks : null
highlightChunks: false
}

MSplitView {
id: topBottomSplit
Layout.fillHeight: true
width: parent.width
Layout.fillWidth: true

orientation: Qt.Vertical

Expand Down

0 comments on commit c3da8b6

Please sign in to comment.