summaryrefslogtreecommitdiff
path: root/gui/qml/DonateDialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'gui/qml/DonateDialog.qml')
-rw-r--r--gui/qml/DonateDialog.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/gui/qml/DonateDialog.qml b/gui/qml/DonateDialog.qml
index b7431ab..eb761a4 100644
--- a/gui/qml/DonateDialog.qml
+++ b/gui/qml/DonateDialog.qml
@@ -16,12 +16,13 @@ MessageDialog {
onAccepted: {
if (backend) {
- backend.donateAccepted(true)
+ backend.openURL(ctx.donateURL)
+ backend.donateAccepted()
}
}
onRejected: {
if (backend) {
- backend.donateAccepted(false)
+ backend.donateRejected()
}
}
}