diff --git a/electrum/gui/qml/components/MessageDialog.qml b/electrum/gui/qml/components/MessageDialog.qml index 1256df7e8..285270254 100644 --- a/electrum/gui/qml/components/MessageDialog.qml +++ b/electrum/gui/qml/components/MessageDialog.qml @@ -54,19 +54,19 @@ ElDialog { Layout.fillWidth: true Layout.preferredWidth: 1 textUnderIcon: false - text: qsTr('Yes') - icon.source: Qt.resolvedUrl('../../icons/confirmed.png') + text: qsTr('No') + icon.source: Qt.resolvedUrl('../../icons/closebutton.png') visible: yesno - onClicked: doAccept() + onClicked: doReject() } FlatButton { Layout.fillWidth: true Layout.preferredWidth: 1 textUnderIcon: false - text: qsTr('No') - icon.source: Qt.resolvedUrl('../../icons/closebutton.png') + text: qsTr('Yes') + icon.source: Qt.resolvedUrl('../../icons/confirmed.png') visible: yesno - onClicked: doReject() + onClicked: doAccept() } } }