about summary refs log tree commit diff stats
path: root/src/preferences.c
diff options
context:
space:
mode:
authorBackalor <backalor@backalor.com>2013-01-14 19:39:27 +0900
committerBackalor <backalor@backalor.com>2013-01-14 19:39:27 +0900
commitba0438607cf377af100987413b024d755963b969 (patch)
tree22f2317cef52943d29ba12cf3babffdfe294417f /src/preferences.c
parent5356118147f715109f8482b4af4d642bc5f6c4a1 (diff)
downloadprofani-tty-ba0438607cf377af100987413b024d755963b969.tar.gz
Add 's' to make the preference file read
Diffstat (limited to 'src/preferences.c')
-rw-r--r--src/preferences.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preferences.c b/src/preferences.c
index 64a420ee..7cd6f722 100644
--- a/src/preferences.c
+++ b/src/preferences.c
@@ -413,13 +413,13 @@ prefs_set_splash(gboolean value)
 gboolean
 prefs_get_notify_status(void)
 {
-    return g_key_file_get_boolean(prefs, "notification", "status", NULL);
+    return g_key_file_get_boolean(prefs, "notifications", "status", NULL);
 }
 
 void
 prefs_set_notify_status(gboolean value)
 {
-    g_key_file_set_boolean(prefs, "notification", "status", value);
+    g_key_file_set_boolean(prefs, "notifications", "status", value);
     _save_prefs();
 }