Donate to Monero feature

This commit is contained in:
dsc 2020-07-08 22:46:38 +02:00
parent b7b1221221
commit b22fb24e47

View file

@ -381,7 +381,9 @@ Rectangle {
}
}
// Copy info to clipboard
RowLayout {
spacing: 20;
MoneroComponents.StandardButton {
small: true
text: qsTr("Copy to clipboard") + translationManager.emptyString
@ -404,5 +406,14 @@ Rectangle {
appWindow.showStatusMessage(qsTr("Copied to clipboard"), 3);
}
}
MoneroComponents.StandardButton {
small: true
text: qsTr("Donate to Monero") + translationManager.emptyString
onClicked: {
middlePanel.sendTo("888tNkZrPN6JsEgekjMnABU4TBzc2Dt29EPAvkRxbANsAnjyPbb3iQ1YBRk1UXcdRsiKc9dhwMVgN5S9cQUiyoogDavup3H", "", "Donation to Monero Core Team");
}
}
}
}
}