From 30c9f95537b988048bfd84a13006578159d7a551 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Fri, 20 Sep 2024 10:14:17 -0400 Subject: [PATCH] default value for notify message box --- oscar/SleepLib/appsettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/SleepLib/appsettings.cpp b/oscar/SleepLib/appsettings.cpp index 4f97fdaf..417fbde1 100644 --- a/oscar/SleepLib/appsettings.cpp +++ b/oscar/SleepLib/appsettings.cpp @@ -52,7 +52,7 @@ AppWideSetting::AppWideSetting(Preferences *pref) : PrefSettings(pref) initPref(STR_US_AutoLaunchImport, false); m_cacheSessions = initPref(STR_IS_CacheSessions, false).toBool(); initPref(STR_US_RemoveCardReminder, true); - initPref(STR_US_NotifyMessagBoxOption, true); + initPref(STR_US_NotifyMessagBoxOption, false); initPref(STR_US_DontAskWhenSavingScreenshots, false); m_profileName = initPref(STR_GEN_Profile, "").toString(); initPref(STR_GEN_AutoOpenLastUsed, true);