From 93cf0493439518e314afd6242b7d7e40fbea5ab1 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Tue, 4 Nov 2025 23:49:09 +0100 Subject: [PATCH] Tray: change chevron to caret --- Commons/TablerIcons.qml | 2 ++ Modules/Bar/Widgets/Tray.qml | 10 +++++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Commons/TablerIcons.qml b/Commons/TablerIcons.qml index 59b226d3..d067e2dd 100644 --- a/Commons/TablerIcons.qml +++ b/Commons/TablerIcons.qml @@ -71,6 +71,8 @@ Singleton { "chevron-down": "chevron-down", "caret-up": "caret-up-filled", "caret-down": "caret-down-filled", + "caret-left": "caret-left-filled", + "caret-right": "caret-right-filled", "star": "star", "star-off": "star-off", "battery-exclamation": "battery-exclamation", diff --git a/Modules/Bar/Widgets/Tray.qml b/Modules/Bar/Widgets/Tray.qml index 2f2a2184..cb1b8a69 100644 --- a/Modules/Bar/Widgets/Tray.qml +++ b/Modules/Bar/Widgets/Tray.qml @@ -317,15 +317,15 @@ Rectangle { anchors.centerIn: parent icon: { if (barPosition === "top") - return "chevron-down" + return "caret-down" else if (barPosition === "bottom") - return "chevron-up" + return "caret-up" else if (barPosition === "left") - return "chevron-right" + return "caret-right" else if (barPosition === "right") - return "chevron-left" + return "caret-left" else - return "chevron-down" // default fallback + return "caret-down" // default fallback } pointSize: Math.round(itemSize * 0.65) color: dropdownButton.hovered ? Color.mPrimary : Color.mOnSurface