From 6203a5c9873ee650ff7c19a0d5688effd36a0517 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 9 Jul 2021 14:27:32 +0200 Subject: [PATCH] Correct chevron size and colour This is the same as what ExpandablePopup does. Contributes to issue CURA-8008. --- plugins/PrepareStage/PrepareMenu.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/PrepareStage/PrepareMenu.qml b/plugins/PrepareStage/PrepareMenu.qml index 850d329ab2..323ea46050 100644 --- a/plugins/PrepareStage/PrepareMenu.qml +++ b/plugins/PrepareStage/PrepareMenu.qml @@ -110,10 +110,10 @@ Item UM.RecolorImage { anchors.centerIn: parent - source: UM.Theme.getIcon("ChevronSingleDown") - width: UM.Theme.getSize("small_button_icon").width - height: UM.Theme.getSize("small_button_icon").height - color: UM.Theme.getColor("icon") + source: UM.Theme.getIcon("ChevronSingleLeft") + width: UM.Theme.getSize("standard_arrow").width + height: UM.Theme.getSize("standard_arrow").height + color: UM.Theme.getColor("small_button_text") sourceSize.height: height }