config: csd.border_width now always reflects the full/total width

This commit is contained in:
Daniel Eklöf 2021-12-22 20:21:46 +01:00
parent 9df537a110
commit 521bd84a99
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 13 additions and 5 deletions

4
main.c
View file

@ -429,7 +429,9 @@ main(int argc, char *const *argv)
}
struct config conf = {NULL};
bool conf_successful = config_load(&conf, conf_path, &user_notifications, &overrides, check_config);
bool conf_successful = config_load(
&conf, conf_path, &user_notifications, &overrides, check_config);
tll_free(overrides);
if (!conf_successful) {
config_free(conf);