From bb9cacb71ee3dbe75154e3f067be830574fccd28 Mon Sep 17 00:00:00 2001 From: Sebastian Wolf Date: Mon, 30 Aug 2021 19:25:49 +0200 Subject: [PATCH] Adjust accordion arrows to match default UX (see sample components) --- qml/components/settingsPage/AccordionItem.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qml/components/settingsPage/AccordionItem.qml b/qml/components/settingsPage/AccordionItem.qml index 1a5cf4f..b6539d2 100644 --- a/qml/components/settingsPage/AccordionItem.qml +++ b/qml/components/settingsPage/AccordionItem.qml @@ -32,7 +32,7 @@ Item { states: [ State { when: area.expanded - PropertyChanges { target: image; rotation: 90 } + PropertyChanges { target: image; rotation: -90 } PropertyChanges { target: content; height: content.implicitHeight + Theme.paddingLarge; opacity: 1.0 } } ] @@ -91,7 +91,7 @@ Item { width: visible ? Theme.iconSizeMedium : 0 highlighted: parent.highlighted source: "image://theme/icon-m-right" - rotation: -90 + rotation: 90 } } Loader {