new page layout for presets settings page

This commit is contained in:
2023-03-03 20:32:27 +01:00
parent 3f09b4bd3f
commit c4b910d073

View File

@@ -108,6 +108,17 @@ ColumnLayout {
Layout.rowSpan: 2 Layout.rowSpan: 2
Layout.fillWidth: true Layout.fillWidth: true
} }
}
Item {
Layout.fillHeight: true
}
}
ColumnLayout {
Layout.fillWidth: true
RowLayout {
Button { Button {
text: qsTr('Alle auf\n0 setzen'); text: qsTr('Alle auf\n0 setzen');
onPressed: presetModel.setAllFadersLow() onPressed: presetModel.setAllFadersLow()
@@ -116,9 +127,8 @@ ColumnLayout {
text: qsTr('Alle auf\nMaximum setzen'); text: qsTr('Alle auf\nMaximum setzen');
onPressed: presetModel.setAllFadersMax() onPressed: presetModel.setAllFadersMax()
} }
}
RowLayout { RowLayout {
Layout.columnSpan: 3
SpinBox { SpinBox {
id: nSpinBox id: nSpinBox
Layout.preferredWidth: 120 Layout.preferredWidth: 120
@@ -151,10 +161,5 @@ ColumnLayout {
} }
} }
} }
Item {
Layout.fillHeight: true
}
}
} }
} }