mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-02 10:52:03 +02:00
[ui] GraphEditor: Use nodes' label instead of type for CompatibilityManager
Also extend the width of the "Node" column to ensure that all nodes, even those with a long name, can be displayed correctly without overlapping on the "Issue" column.
This commit is contained in:
parent
49c11a9b9a
commit
0e2aaa1c50
1 changed files with 3 additions and 3 deletions
|
@ -78,7 +78,7 @@ MessageDialog {
|
||||||
background: Rectangle { color: Qt.darker(parent.palette.window, 1.15) }
|
background: Rectangle { color: Qt.darker(parent.palette.window, 1.15) }
|
||||||
RowLayout {
|
RowLayout {
|
||||||
width: parent.width
|
width: parent.width
|
||||||
Label { text: "Node"; Layout.preferredWidth: 130; font.bold: true }
|
Label { text: "Node"; Layout.preferredWidth: 150; font.bold: true }
|
||||||
Label { text: "Issue"; Layout.fillWidth: true; font.bold: true }
|
Label { text: "Issue"; Layout.fillWidth: true; font.bold: true }
|
||||||
Label { text: "Upgradable"; font.bold: true }
|
Label { text: "Upgradable"; font.bold: true }
|
||||||
}
|
}
|
||||||
|
@ -93,8 +93,8 @@ MessageDialog {
|
||||||
anchors.horizontalCenter: parent != null ? parent.horizontalCenter : undefined
|
anchors.horizontalCenter: parent != null ? parent.horizontalCenter : undefined
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
Layout.preferredWidth: 130
|
Layout.preferredWidth: 150
|
||||||
text: compatibilityNodeDelegate.node ? compatibilityNodeDelegate.node.nodeType : ""
|
text: compatibilityNodeDelegate.node ? compatibilityNodeDelegate.node.defaultLabel : ""
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue