Merge pull request #3244 from orestisf1993/issue-3220

i3bar: don't reset verbosity when parsing config values
This commit is contained in:
Ingo Bürk 2018-04-16 11:59:49 +02:00 committed by GitHub
commit 67a60a9454
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -304,8 +304,10 @@ static int config_boolean_cb(void *params_, int val) {
}
if (!strcmp(cur_key, "verbose")) {
if (!config.verbose) {
DLOG("verbose = %d\n", val);
config.verbose = val;
}
return 1;
}