summaryrefslogtreecommitdiff
path: root/modules/bar/Pills.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/bar/Pills.qml')
-rw-r--r--modules/bar/Pills.qml16
1 files changed, 15 insertions, 1 deletions
diff --git a/modules/bar/Pills.qml b/modules/bar/Pills.qml
index 042e9c1..f608549 100644
--- a/modules/bar/Pills.qml
+++ b/modules/bar/Pills.qml
@@ -68,7 +68,11 @@ Item {
anchors.verticalCenter: root.get(parent.verticalCenter, undefined)
}
- StatusIcons {
+ Tray {
+ id: tray
+
+ vertical: BarConfig.vertical
+
anchors.left: root.get(clock.right, undefined)
anchors.leftMargin: root.get(Appearance.padding.large, 0)
anchors.top: root.get(undefined, clock.bottom)
@@ -77,6 +81,16 @@ Item {
anchors.horizontalCenter: root.get(undefined, parent.horizontalCenter)
anchors.verticalCenter: root.get(parent.verticalCenter, undefined)
}
+
+ StatusIcons {
+ anchors.left: root.get(tray.right, undefined)
+ anchors.leftMargin: root.get(Appearance.padding.normal, 0)
+ anchors.top: root.get(undefined, tray.bottom)
+ anchors.topMargin: root.get(0, Appearance.padding.large)
+
+ anchors.horizontalCenter: root.get(undefined, parent.horizontalCenter)
+ anchors.verticalCenter: root.get(parent.verticalCenter, undefined)
+ }
}
}