Jaime van Kessel 3df9b369f7 Removed the divider as a seperate component
Since it's only used in one place, there is no real point in making it a seperate file

CURA-6005
2019-01-04 11:40:09 +01:00

38 lines
791 B
QML

// Copyright (c) 2018 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3
import UM 1.1 as UM
ScrollView
{
property alias model: backupList.model
width: parent.width
ListView
{
id: backupList
width: parent.width
delegate: Item
{
width: parent.width
height: childrenRect.height
BackupListItem
{
id: backupListItem
width: parent.width
}
Rectangle
{
id: divider
color: UM.Theme.getColor("lining")
height: UM.Theme.getSize("default_lining").height
}
}
}
}