mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 21:53:23 +00:00
QML UI: don't use anchors within Layouts
Qt 5.11 adds useful warnings when code attempts to use anchors within Layouts and even tells you how to fix things. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
cda1961d80
commit
f998b59900
2 changed files with 10 additions and 24 deletions
|
@ -97,9 +97,8 @@ Item {
|
|||
}
|
||||
|
||||
RowLayout {
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.margins: Kirigami.Units.smallSpacing
|
||||
Layout.fillWidth: true
|
||||
Layout.margins: Kirigami.Units.smallSpacing
|
||||
spacing: Kirigami.Units.smallSpacing
|
||||
visible: rootItem.showPin
|
||||
SsrfButton {
|
||||
|
@ -124,9 +123,8 @@ Item {
|
|||
}
|
||||
|
||||
RowLayout {
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.margins: Kirigami.Units.smallSpacing
|
||||
Layout.fillWidth: true
|
||||
Layout.margins: Kirigami.Units.smallSpacing
|
||||
spacing: Kirigami.Units.smallSpacing
|
||||
visible: !rootItem.showPin
|
||||
|
||||
|
|
|
@ -49,10 +49,8 @@ Kirigami.Page {
|
|||
Layout.fillWidth: true
|
||||
GridLayout {
|
||||
id: buttonGrid
|
||||
anchors {
|
||||
top: parent.top
|
||||
topMargin: Kirigami.Units.smallSpacing * 4
|
||||
}
|
||||
Layout.alignment: Qt.AlignTop
|
||||
Layout.topMargin: Kirigami.Units.smallSpacing * 4
|
||||
columns: 2
|
||||
Controls.Label { text: qsTr(" Vendor name: ") }
|
||||
Controls.ComboBox {
|
||||
|
@ -163,11 +161,8 @@ Kirigami.Page {
|
|||
}
|
||||
|
||||
Controls.ProgressBar {
|
||||
anchors {
|
||||
top: buttonGrid.bottom
|
||||
topMargin: Kirigami.Units.smallSpacing * 4
|
||||
}
|
||||
id: progressBar
|
||||
Layout.topMargin: Kirigami.Units.smallSpacing * 4
|
||||
Layout.fillWidth: true
|
||||
indeterminate: true
|
||||
visible: false
|
||||
|
@ -175,12 +170,8 @@ Kirigami.Page {
|
|||
|
||||
RowLayout {
|
||||
id: buttonBar
|
||||
anchors {
|
||||
left: parent.left
|
||||
right: parent.right
|
||||
top: progressBar.bottom
|
||||
topMargin: Kirigami.Units.smallSpacing * 2
|
||||
}
|
||||
Layout.fillWidth: true
|
||||
Layout.topMargin: Kirigami.Units.smallSpacing * 2
|
||||
spacing: Kirigami.Units.smallSpacing
|
||||
SsrfButton {
|
||||
id: download
|
||||
|
@ -227,10 +218,7 @@ Kirigami.Page {
|
|||
|
||||
ListView {
|
||||
id: dlList
|
||||
anchors {
|
||||
top: buttonBar.bottom
|
||||
topMargin: Kirigami.Units.smallSpacing * 4
|
||||
}
|
||||
Layout.topMargin: Kirigami.Units.smallSpacing * 4
|
||||
Layout.bottomMargin: bottomButtons.height * 1.5
|
||||
Layout.fillWidth: true
|
||||
Layout.fillHeight: true
|
||||
|
|
Loading…
Add table
Reference in a new issue