From 17fb60f216e3f6979a44144677a7d1d8bb9e9fe4 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Fri, 6 Jun 2025 22:38:15 +1000 Subject: feat: tray item menus --- modules/bar/components/Tray.qml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'modules/bar/components') 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 {} -- cgit v1.2.3-freya