2015-06-22 23:41:23 +00:00
|
|
|
|
|
|
|
|
|
2015-02-25 18:26:04 +00:00
|
|
|
import QtQuick 2.0
|
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
|
|
2015-04-10 21:59:52 +00:00
|
|
|
PlasmaCore.ColorScope {
|
|
|
|
|
colorGroup: PlasmaCore.Theme.NormalColorGroup
|
|
|
|
|
|
2015-02-25 18:26:04 +00:00
|
|
|
PlasmaCore.FrameSvgItem {
|
|
|
|
|
z: -1
|
|
|
|
|
imagePath: "widgets/background"
|
|
|
|
|
enabledBorders: PlasmaCore.FrameSvgItem.TopBorder | PlasmaCore.FrameSvgItem.BottomBorder
|
|
|
|
|
anchors {
|
|
|
|
|
fill: parent
|
2019-02-24 09:22:31 +00:00
|
|
|
topMargin: -margins.top / 2
|
|
|
|
|
bottomMargin: -margins.bottom / 2
|
2015-02-25 18:26:04 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-22 23:41:23 +00:00
|
|
|
//cut away one line from the favorites bar
|
2019-02-24 09:22:31 +00:00
|
|
|
height: applicationsView.cellHeight
|
2015-02-25 18:26:04 +00:00
|
|
|
width: parent.width
|
|
|
|
|
y: parent.height / 2 - height / 2
|
|
|
|
|
x: 0
|
|
|
|
|
}
|