summaryrefslogtreecommitdiff
path: root/service/dconf-writer.c
diff options
context:
space:
mode:
Diffstat (limited to 'service/dconf-writer.c')
-rw-r--r--service/dconf-writer.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/service/dconf-writer.c b/service/dconf-writer.c
index 7f9f2a5..15801b5 100644
--- a/service/dconf-writer.c
+++ b/service/dconf-writer.c
@@ -75,7 +75,10 @@ dconf_writer_real_list (GHashTable *set)
return;
while ((name = g_dir_read_name (dir)))
- g_hash_table_add (set, g_strdup (name));
+ {
+ if (!strchr (name, '.'))
+ g_hash_table_add (set, g_strdup (name));
+ }
g_dir_close (dir);
}