Index: sources/gui/qml/components/UpDownButton.qml =================================================================== diff -u -r1a8e9578b27bb3877116675d0b2361ce4f5b5539 -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/components/UpDownButton.qml (.../UpDownButton.qml) (revision 1a8e9578b27bb3877116675d0b2361ce4f5b5539) +++ sources/gui/qml/components/UpDownButton.qml (.../UpDownButton.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. + * Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file UpDownButton.qml * \author (last) Behrouz NematiPour - * \date (last) 09-Dec-2020 + * \date (last) 13-Jun-2021 * \author (original) Behrouz NematiPour * \date (original) 09-Dec-2020 * @@ -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" } }