Index: sources/gui/qml/components/ExportButton.qml =================================================================== diff -u -r73091a6f5717c0fc88e236c06c618ad361f30a3c -re125bd5cf13750eaf241d518b9c846139afaa81c --- sources/gui/qml/components/ExportButton.qml (.../ExportButton.qml) (revision 73091a6f5717c0fc88e236c06c618ad361f30a3c) +++ sources/gui/qml/components/ExportButton.qml (.../ExportButton.qml) (revision e125bd5cf13750eaf241d518b9c846139afaa81c) @@ -21,15 +21,23 @@ import "qrc:/components" TouchRect { id : _root - width : 50 - height : width - x : width - 10 + width : 155 + height : 50 + + property bool exportTreatment: false + + anchors.margins: 35 + text { text: qsTr("Export") font.pixelSize: Fonts.fontPixelButton * 0.75 } - onPressed: { - _GuiView.doExportLog() + onClicked: { + if ( exportTreatment ) + _GuiView.doExportTreatment() + else + _GuiView.doExportLog() + } Connections { target: _GuiView