diff options
Diffstat (limited to 'modules/bar/components/Tray.qml')
| -rw-r--r-- | modules/bar/components/Tray.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/bar/components/Tray.qml b/modules/bar/components/Tray.qml index fc65492..6280a30 100644 --- a/modules/bar/components/Tray.qml +++ b/modules/bar/components/Tray.qml @@ -5,6 +5,8 @@ import QtQuick Item { id: root + readonly property Repeater items: items + clip: true visible: width > 0 && height > 0 // To avoid warnings about being visible with no size @@ -28,6 +30,8 @@ Item { } Repeater { + id: items + model: SystemTray.items TrayItem {} |