update SettingsContainersListView

This commit is contained in:
Cyril Anisimov
2025-07-26 17:44:06 +02:00
parent d320faa4b7
commit 1ecbd2dc92
@@ -16,26 +16,13 @@ import "../Controls2/TextTypes"
ListViewType {
id: root
width: parent.width
height: root.contentItem.height
clip: true
reuseItems: true
property bool isFocusable: false
delegate: Item {
implicitWidth: root.width
implicitHeight: delegateContent.implicitHeight
ColumnLayout {
id: delegateContent
anchors.fill: parent
delegate: ColumnLayout {
width: root.width
LabelWithButtonType {
id: containerRadioButton
implicitWidth: parent.width
Layout.fillWidth: true
text: name
descriptionText: description
@@ -86,5 +73,4 @@ ListViewType {
DividerType {}
}
}
}