Security.qml: fix first DeviceSection padding

This commit is contained in:
miruka
2020-11-04 09:28:45 -04:00
parent df979ec5fa
commit c7d4f719b6
3 changed files with 11 additions and 11 deletions

View File

@@ -238,6 +238,12 @@ HColumnPage {
}
}
section.property: "type"
section.delegate: DeviceSection {
width: deviceList.width
view: deviceList
}
delegate: DeviceDelegate {
width: deviceList.width
view: deviceList
@@ -249,12 +255,6 @@ HColumnPage {
onDeleteRequest: page.deleteDevices(model.index)
}
section.property: "type"
section.delegate: DeviceSection {
width: deviceList.width
view: deviceList
}
Component.onCompleted: page.loadDevices()
Layout.fillWidth: true