Merge pull request #2999

b22fb24 Donate to Monero feature (xmrdsc)
This commit is contained in:
luigi1111 2020-07-14 15:47:29 -05:00
commit 9d48f96fc8
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

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");
}
}
}
}
}