From a135b09ec72a9b95cc118ec48d2617f8a44875de Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:35:24 +0100 Subject: [PATCH] styledcombobox: make dropdown arrow nicer --- .../ii/modules/common/widgets/StyledComboBox.qml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml index a7ab3e9a5..944aaf8c1 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml @@ -31,9 +31,14 @@ ComboBox { indicator: MaterialSymbol { x: root.width - width - 16 y: root.height / 2 - height / 2 - text: "arrow_drop_down" + text: "keyboard_arrow_down" iconSize: Appearance.font.pixelSize.larger color: Appearance.colors.colOnSecondaryContainer + + rotation: root.popup.visible ? 180 : 0 + Behavior on rotation { + animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this) + } } contentItem: Item {