diff --git a/src/widgets/JobDialog.qml b/src/widgets/JobDialog.qml --- a/src/widgets/JobDialog.qml +++ b/src/widgets/JobDialog.qml @@ -81,24 +81,26 @@ } footer: RowLayout { + Item { + Layout.fillWidth: true + } Button { - text: i18n("Run") + text: i18n("Send") + icon.name: "document-send" enabled: window.configuration && window.configuration.isReady onClicked: { view.pop(); window.startJob(); } } Button { text: i18n("Cancel") + icon.name: "dialog-cancel" onClicked: { window.q.finished(null, 1 /* KIO::ERR_USER_CANCELED */, i18n("Configuration cancelled")); window.visible = false; } } - Item { - Layout.fillWidth: true - } } } }