diff --git a/kcms/info/ui/main.qml b/kcms/info/ui/main.qml index 03ce5ef7..30b46382 100644 --- a/kcms/info/ui/main.qml +++ b/kcms/info/ui/main.qml @@ -59,6 +59,31 @@ KCM.SimpleKCM { } } + FormCard.FormHeader { + visible: kcm.vendorInfoTitle !== "" + title: kcm.vendorInfoTitle + } + + FormCard.FormCard { + visible: kcm.vendorInfoTitle !== "" + Repeater { + model: kcm.vendorInfo + ColumnLayout { + id: delegate + + required property var modelData + + spacing: 0 + + FormCard.FormTextDelegate { + text: delegate.modelData.Key + description: delegate.modelData.Value + } + FormCard.FormDelegateSeparator {} + } + } + } + FormCard.FormHeader { title: i18nc("@title:group", "Software") } @@ -122,30 +147,5 @@ KCM.SimpleKCM { } } } - - FormCard.FormHeader { - visible: kcm.vendorInfoTitle !== "" - title: kcm.vendorInfoTitle - } - - FormCard.FormCard { - visible: kcm.vendorInfoTitle !== "" - Repeater { - model: kcm.vendorInfo - ColumnLayout { - id: delegate - - required property var modelData - - spacing: 0 - - FormCard.FormTextDelegate { - text: delegate.modelData.Key - description: delegate.modelData.Value - } - FormCard.FormDelegateSeparator {} - } - } - } } }