diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-24 14:06:02 +0800 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-24 14:06:02 +0800 |
| commit | 9f55a6d0aa11652d7ea65bf50f5d6f8a77b25b0d (patch) | |
| tree | e4b68421ae4fd40b8eecc807367e5d3365b3b7cc /modules/bar/components/Tray.qml | |
| parent | internal: fix null errors (diff) | |
| download | caelestia-shell-9f55a6d0aa11652d7ea65bf50f5d6f8a77b25b0d.tar.gz caelestia-shell-9f55a6d0aa11652d7ea65bf50f5d6f8a77b25b0d.tar.bz2 caelestia-shell-9f55a6d0aa11652d7ea65bf50f5d6f8a77b25b0d.zip | |
bar: better colours
Diffstat (limited to 'modules/bar/components/Tray.qml')
| -rw-r--r-- | modules/bar/components/Tray.qml | 5 |
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 {} } } |