Index: sources/gui/qml/components/UpDownButton.qml =================================================================== diff -u -r1a8e9578b27bb3877116675d0b2361ce4f5b5539 -r13d6a4fae2f910ab6e289ac9280258a94f734405 --- sources/gui/qml/components/UpDownButton.qml (.../UpDownButton.qml) (revision 1a8e9578b27bb3877116675d0b2361ce4f5b5539) +++ sources/gui/qml/components/UpDownButton.qml (.../UpDownButton.qml) (revision 13d6a4fae2f910ab6e289ac9280258a94f734405) @@ -21,6 +21,7 @@ TouchRect { id : _root property bool isUp : false + property bool isList: false height: 45 width : height @@ -32,6 +33,6 @@ anchors.centerIn: parent height : Variables.iconsDiameter width : Variables.iconsDiameter - source : _root.isUp ? "qrc:/images/iChevronUp" : "qrc:/images/iChevronDown" + source : _root.isList ? "qrc:/images/iList" : _root.isUp ? "qrc:/images/iChevronUp" : "qrc:/images/iChevronDown" } }