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
This commit is contained in:
Jaime van Kessel 2019-01-04 11:40:09 +01:00
parent c10b8b5c3f
commit 3df9b369f7
2 changed files with 4 additions and 16 deletions

View File

@ -26,10 +26,11 @@ ScrollView
width: parent.width
}
Divider
Rectangle
{
width: parent.width
anchors.top: backupListItem.bottom
id: divider
color: UM.Theme.getColor("lining")
height: UM.Theme.getSize("default_lining").height
}
}
}

View File

@ -1,13 +0,0 @@
// Copyright (c) 2018 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.7
import UM 1.3 as UM
Rectangle
{
id: divider
color: UM.Theme.getColor("lining")
height: UM.Theme.getSize("default_lining").height
}