From 09a6ff73c6fba03f91287bcb2189bdd5974fb35f Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Mon, 29 Sep 2014 20:08:54 +0200 Subject: [PATCH] top panel --- shell/contents/views/Desktop.qml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/shell/contents/views/Desktop.qml b/shell/contents/views/Desktop.qml index c8dffd35..e1125900 100644 --- a/shell/contents/views/Desktop.qml +++ b/shell/contents/views/Desktop.qml @@ -154,11 +154,23 @@ Item { } } + Rectangle { + id: statusPanel + anchors { + top: parent.top + left: parent.left + right: parent.right + } + z: 1 + height: units.iconSizes.small + color: "black" + } + ListView { id: notificationView spacing: units.smallSpacing anchors { - top: parent.top + top: statusPanel.bottom bottom: stripe.top left: parent.left right: parent.right