From 3ec4e1baf24db682e3c1428d10d1c7f9ae36b7d2 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Thu, 25 May 2023 12:16:15 +0800 Subject: [PATCH] Fix caret colour in basic combo box Signed-off-by: Claudio Cambra --- src/gui/BasicComboBox.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/BasicComboBox.qml b/src/gui/BasicComboBox.qml index 3ec2bfafc..862c5dd67 100644 --- a/src/gui/BasicComboBox.qml +++ b/src/gui/BasicComboBox.qml @@ -51,10 +51,11 @@ ComboBox { cached: true width: source.width height: source.height + source: Image { horizontalAlignment: Qt.AlignRight verticalAlignment: Qt.AlignVCenter - source: "qrc:///client/theme/white/caret-down.svg" + source: "image://svgimage-custom-color/caret-down.svg/" + palette.windowText sourceSize.width: Style.accountDropDownCaretSize sourceSize.height: Style.accountDropDownCaretSize Accessible.role: Accessible.PopupMenu -- 2.30.2