Index: sources/gui/qml/components/ExportButton.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -rfe3f53cba411ccc253f7b86ac0f9f899d2cb0630 --- sources/gui/qml/components/ExportButton.qml (.../ExportButton.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/components/ExportButton.qml (.../ExportButton.qml) (revision fe3f53cba411ccc253f7b86ac0f9f899d2cb0630) @@ -22,16 +22,16 @@ TouchRect { id : _root - property bool isSmall: false + property bool isCancelShown : false + property bool isSmall : false + property bool disabled : false - property bool disabled : false - width : isSmall ? 155 : Variables.touchRectWidth height : isSmall ? 50 : Variables.touchRectHeight anchors.margins: 35 text { - text: qsTr("Export") + text: isCancelShown ? qsTr("Cancel Export") : qsTr("Export") font.pixelSize: Fonts.fontPixelButton * (isSmall ? 0.75 : 1) } }