summaryrefslogtreecommitdiff
path: root/modules/bar/components/Tray.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/bar/components/Tray.qml')
-rw-r--r--modules/bar/components/Tray.qml5
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/bar/components/Tray.qml b/modules/bar/components/Tray.qml
index 8ccd48a..78efad7 100644
--- a/modules/bar/components/Tray.qml
+++ b/modules/bar/components/Tray.qml
@@ -8,7 +8,6 @@ Item {
id: root
readonly property bool vertical: parent?.vertical ?? false
- property color colour: Colours.palette.lavender
clip: true
visible: width > 0 && height > 0 // To avoid warnings about being visible with no size
@@ -22,9 +21,7 @@ Item {
Repeater {
model: SystemTray.items
- TrayItem {
- colour: root.colour
- }
+ TrayItem {}
}
}