diff options
author | Backalor <backalor@backalor.com> | 2013-01-14 19:39:27 +0900 |
---|---|---|
committer | Backalor <backalor@backalor.com> | 2013-01-14 19:39:27 +0900 |
commit | ba0438607cf377af100987413b024d755963b969 (patch) | |
tree | 22f2317cef52943d29ba12cf3babffdfe294417f | |
parent | 5356118147f715109f8482b4af4d642bc5f6c4a1 (diff) | |
download | profani-tty-ba0438607cf377af100987413b024d755963b969.tar.gz |
Add 's' to make the preference file read
-rw-r--r-- | src/preferences.c | 4 |
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(); } |