1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-01-30 09:05:04 +01:00

MainWindow: Only show sponsor dialog if update dialog is answered

This commit is contained in:
Jonas Kvinge 2024-07-13 18:24:47 +02:00
parent 124b97c024
commit 41d9d15dda

View File

@ -1071,7 +1071,14 @@ MainWindow::MainWindow(Application *app, SharedPtr<SystemTrayIcon> tray_icon, OS
#endif
{
bool asked_permission = true;
Settings s;
#ifdef HAVE_QTSPARKLE
s.beginGroup("QtSparkle");
asked_permission = s.value("asked_permission", false).toBool();
s.endGroup();
#endif
if (asked_permission) {
s.beginGroup(kSettingsGroup);
constexpr char do_not_show_sponsor_message_key[] = "do_not_show_sponsor_message";
const bool do_not_show_sponsor_message = s.value(do_not_show_sponsor_message_key, false).toBool();
@ -1084,6 +1091,7 @@ MainWindow::MainWindow(Application *app, SharedPtr<SystemTrayIcon> tray_icon, OS
sponsor_message->ShowMessage(tr("Sponsoring Strawberry"), tr("Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1").arg(QStringLiteral("<a href= \"https://www.strawberrymusicplayer.org/\">www.strawberrymusicplayer.org</a>")), IconLoader::Load(QStringLiteral("dialog-information")));
}
}
}
qLog(Debug) << "Started" << QThread::currentThread();
initialized_ = true;