shift-shell/containments/homescreen/package/contents/ui/SatelliteStripe.qml
Bhushan Shah 38a3a7c99c Fix iconSizes and strip size on the horizontal form factor
Previously it was setting height and width of icons to overall width/4
which happens to be enorumously huge on the horizontal form factor.

This patch fixes it by setting height of "huge" iconSize and width of
overall width/4
2015-08-22 18:16:56 +05:30

25 lines
638 B
QML

import QtQuick 2.0
import org.kde.plasma.core 2.0 as PlasmaCore
PlasmaCore.ColorScope {
colorGroup: PlasmaCore.Theme.NormalColorGroup
PlasmaCore.FrameSvgItem {
z: -1
imagePath: "widgets/background"
enabledBorders: PlasmaCore.FrameSvgItem.TopBorder | PlasmaCore.FrameSvgItem.BottomBorder
anchors {
fill: parent
topMargin: -margins.top
bottomMargin: -margins.bottom
}
}
//cut away one line from the favorites bar
height: applicationsView.cellHeight - units.gridUnit
width: parent.width
y: parent.height / 2 - height / 2
x: 0
}