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 {