mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 11:39:25 +00:00
mainwindow: improve donation reminder
This commit is contained in:
parent
2f11cf2710
commit
e721e74b6e
1 changed files with 2 additions and 2 deletions
|
@ -1798,8 +1798,8 @@ void MainWindow::donationNag() {
|
||||||
|
|
||||||
donationCounter++;
|
donationCounter++;
|
||||||
if (donationCounter % constants::donationBoundary == 0) {
|
if (donationCounter % constants::donationBoundary == 0) {
|
||||||
auto msg = "Feather is a 100% community-sponsored endeavor. Please consider supporting "
|
auto msg = "Feather development is funded entirely through donations.\n\nPlease consider supporting "
|
||||||
"the project financially. Get rid of this message by donating any amount.";
|
"the project. Donate any amount to remove this reminder.";
|
||||||
int ret = QMessageBox::information(this, "Donate to Feather", msg, QMessageBox::Yes, QMessageBox::No);
|
int ret = QMessageBox::information(this, "Donate to Feather", msg, QMessageBox::Yes, QMessageBox::No);
|
||||||
if (ret == QMessageBox::Yes) {
|
if (ret == QMessageBox::Yes) {
|
||||||
this->donateButtonClicked();
|
this->donateButtonClicked();
|
||||||
|
|
Loading…
Reference in a new issue