diff --git a/applets/kickoff/package/contents/ui/FullRepresentation.qml b/applets/kickoff/package/contents/ui/FullRepresentation.qml --- a/applets/kickoff/package/contents/ui/FullRepresentation.qml +++ b/applets/kickoff/package/contents/ui/FullRepresentation.qml @@ -116,6 +116,22 @@ id: header } + PlasmaCore.SvgItem { + id: headerSeparator + svg: PlasmaCore.Svg { + imagePath: "widgets/line" + } + elementId: "horizontal-line" + + width: header.width + height: 2 + + anchors { + top: header.top + horizontalCenter: header.horizontalCenter + } + } + Item { id: mainArea anchors.topMargin: mainTabGroup.state == "top" ? units.smallSpacing : 0 @@ -301,6 +317,14 @@ target: header height: header.implicitHeight } + AnchorChanges { + target: headerSeparator + anchors { + top: undefined + bottom: header.bottom + horizontalCenter: header.horizontalCenter + } + } AnchorChanges { target: mainArea