Index: sources/gui/qml/components/ArrowButton.qml =================================================================== diff -u -r21041955990385205ec1aca17ef51fc1fd9a4b29 -rc749ecd5dc413ce091250af652ccba4d96f7a582 --- sources/gui/qml/components/ArrowButton.qml (.../ArrowButton.qml) (revision 21041955990385205ec1aca17ef51fc1fd9a4b29) +++ sources/gui/qml/components/ArrowButton.qml (.../ArrowButton.qml) (revision c749ecd5dc413ce091250af652ccba4d96f7a582) @@ -13,11 +13,11 @@ property bool rightArrow : false property bool expandingArrow: false - property string iconImage : upArrow ? "qrc:/images/iChevronUp" : - downArrow ? "qrc:/images/iChevronDown" : - leftArrow ? "qrc:/images/iChevronLeft" : - rightArrow ? "qrc:/images/iChevronRight" : - expandingArrow ? "qrc:/images/iArrowsExpanding" : + property string iconImage : upArrow ? enabled ? "qrc:/images/iChevronUp" : "qrc:/images/iArrowUpDisabled" : + downArrow ? enabled ? "qrc:/images/iChevronDown" : "qrc:/images/iArrowDownDisabled" : + leftArrow ? enabled ? "qrc:/images/iChevronLeft" : "qrc:/images/iArrowLeftDisabled" : + rightArrow ? enabled ? "qrc:/images/iChevronRight" : "qrc:/images/iArrowRightDisabled" : + expandingArrow ? "qrc:/images/iArrowsExpanding" : "" property int iconSize : Variables.arrowIconDiameter