Skip to content

Commit 164bbe8

Browse files
committed
Fix vertical resizing of intrinsic data.
1 parent 6018aa2 commit 164bbe8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

source/IntrinsicView.qml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ ListView {
5656
verticalAlignment: Text.AlignVCenter
5757
Layout.fillWidth: true
5858
textFormat: Text.StyledText
59+
clip: true
5960
}
6061
Label {
6162
text: intrinsicInstruction
@@ -76,21 +77,22 @@ ListView {
7677
RowLayout {
7778
spacing: 0
7879
id: intrinDetails
79-
Layout.fillHeight: true
80-
Layout.preferredHeight: intrinDetailsSub.implicitHeight
81-
Layout.maximumHeight: Layout.preferredHeight
80+
Layout.fillWidth: true
8281
Layout.preferredWidth: intrinsicItem.width
8382
Layout.minimumWidth: Layout.preferredWidth
8483
Layout.maximumWidth: Layout.preferredWidth
8584
Rectangle {
8685
width: 1
87-
Layout.preferredHeight: parent.height
86+
Layout.preferredHeight: intrinDetailsSub.height
8887
Layout.minimumHeight: Layout.preferredHeight
88+
Layout.maximumHeight: Layout.preferredHeight
8989
color: catColours[intrinsicTechnology]
9090
}
9191
ColumnLayout {
9292
id: intrinDetailsSub
9393
spacing: 0
94+
anchors.left: parent.left
95+
anchors.top: parent.top
9496
Layout.fillWidth: true
9597
Layout.preferredWidth: intrinsicItem.width
9698
Layout.minimumWidth: Layout.preferredWidth

0 commit comments

Comments
 (0)