use more non-Layouts

This commit is contained in:
end-4
2025-09-28 13:42:44 +02:00
parent b57e678dc9
commit 0f6c076dda
6 changed files with 46 additions and 42 deletions
@@ -15,14 +15,14 @@ Item {
implicitWidth: mainLayout.implicitWidth
implicitHeight: mainLayout.implicitHeight
ColumnLayout {
Column {
id: mainLayout
spacing: root.spacing
Repeater { // Main table rows
model: root.elements
delegate: RowLayout { // Table cells
delegate: Row { // Table cells
id: tableRow
spacing: root.spacing
required property var modelData
@@ -47,7 +47,7 @@ Item {
Repeater { // Main table rows
model: root.series
delegate: RowLayout { // Table cells
delegate: Row { // Table cells
id: seriesTableRow
spacing: root.spacing
required property var modelData