From a8d8da71451b60b0be770e6d17aa6e435a43a269 Mon Sep 17 00:00:00 2001 From: Damocles Date: Fri, 17 Apr 2026 22:16:20 +0200 Subject: [PATCH] fix ThemedIcon wrongly moved to S. namespace --- shell/modules/TrayMenu.qml | 2 +- shell/modules/TrayModule.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/modules/TrayMenu.qml b/shell/modules/TrayMenu.qml index 7d273fa..922aa0f 100644 --- a/shell/modules/TrayMenu.qml +++ b/shell/modules/TrayMenu.qml @@ -84,7 +84,7 @@ M.HoverPanel { radius: S.Theme.radius } - S.ThemedIcon { + M.ThemedIcon { id: entryIcon visible: !entryItem.modelData.isSeparator && entryItem.modelData.icon !== "" anchors.verticalCenter: parent.verticalCenter diff --git a/shell/modules/TrayModule.qml b/shell/modules/TrayModule.qml index 6453d78..ee02708 100644 --- a/shell/modules/TrayModule.qml +++ b/shell/modules/TrayModule.qml @@ -63,7 +63,7 @@ RowLayout { shadowHorizontalOffset: 0 } - S.ThemedIcon { + M.ThemedIcon { anchors.fill: parent source: iconItem.modelData.icon tint: iconItem._needsAttention ? S.Theme.base08 : (root.parent?.accentColor ?? S.Theme.base05)