From e721e74b6e7fc167d9f7c0a0d0afb5bb9df708ea Mon Sep 17 00:00:00 2001 From: tobtoht Date: Mon, 7 Oct 2024 17:36:33 +0200 Subject: [PATCH] mainwindow: improve donation reminder --- src/MainWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 324ea90..1be5eb8 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -1798,8 +1798,8 @@ void MainWindow::donationNag() { donationCounter++; if (donationCounter % constants::donationBoundary == 0) { - auto msg = "Feather is a 100% community-sponsored endeavor. Please consider supporting " - "the project financially. Get rid of this message by donating any amount."; + auto msg = "Feather development is funded entirely through donations.\n\nPlease consider supporting " + "the project. Donate any amount to remove this reminder."; int ret = QMessageBox::information(this, "Donate to Feather", msg, QMessageBox::Yes, QMessageBox::No); if (ret == QMessageBox::Yes) { this->donateButtonClicked();