diff options
Diffstat (limited to 'qml/StatusBar.qml')
-rw-r--r-- | qml/StatusBar.qml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/qml/StatusBar.qml b/qml/StatusBar.qml index 3758657..8f764c0 100644 --- a/qml/StatusBar.qml +++ b/qml/StatusBar.qml @@ -62,7 +62,7 @@ Rectangle { anchors.left: backHome.right anchors.top: parent.top anchors.bottom: parent.bottom - anchors.right: systrayview.left + anchors.right: systray.left anchors.leftMargin: 4 anchors.topMargin: 4 clip: true @@ -134,6 +134,16 @@ Rectangle { } } + Systray { + id: systray + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.right: systrayview.left + anchors.topMargin: 2 + anchors.bottomMargin: 2 + anchors.rightMargin: 2 + } + SystrayView { id: systrayview anchors.top: parent.top |