]> git.sur5r.net Git - i3/i3/blobdiff - i3bar/src/config.c
i3bar: don't reset verbosity when parsing config values
[i3/i3] / i3bar / src / config.c
index 59a44aee912b9a9b30ea99392cab662dda43dc03..ccbe61698f411903da5c0fd2ec11a94ab31ec4eb 100644 (file)
@@ -304,8 +304,10 @@ static int config_boolean_cb(void *params_, int val) {
     }
 
     if (!strcmp(cur_key, "verbose")) {
-        DLOG("verbose = %d\n", val);
-        config.verbose = val;
+        if (!config.verbose) {
+            DLOG("verbose = %d\n", val);
+            config.verbose = val;
+        }
         return 1;
     }