summaryrefslogtreecommitdiff
path: root/src/settings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings.cpp')
-rw-r--r--src/settings.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/settings.cpp b/src/settings.cpp
index b568d802..ec9bb362 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -2430,6 +2430,16 @@ void GlobalSettings::setHideTutorialQuestion(bool b)
settings().setValue("HideTutorialQuestion", b);
}
+bool GlobalSettings::hideCategoryReminder()
+{
+ return settings().value("HideCategoryReminder", false).toBool();
+}
+
+void GlobalSettings::setHideCategoryReminder(bool b)
+{
+ settings().setValue("HideCategoryReminder", b);
+}
+
bool GlobalSettings::nexusApiKey(QString& apiKey)
{
QString tempKey = getWindowsCredential("APIKEY");