From 49513b7ff2d0e463c31caa54f6825a9eb8031d3f Mon Sep 17 00:00:00 2001 From: Damocles Date: Sun, 12 Apr 2026 21:21:26 +0200 Subject: [PATCH] tray icons: size from fontSize instead of hardcoded 18px --- modules/Tray.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/Tray.qml b/modules/Tray.qml index 55f9894..3c1d4bc 100644 --- a/modules/Tray.qml +++ b/modules/Tray.qml @@ -24,8 +24,8 @@ RowLayout { property bool _hovered: false property real _pulseOpacity: 1 - implicitWidth: 18 - implicitHeight: 18 + implicitWidth: M.Theme.fontSize + 4 + implicitHeight: M.Theme.fontSize + 4 SequentialAnimation { running: iconItem._needsAttention