From 39ba9559194c95997b93c93e30314962f914b01e Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Tue, 9 Oct 2012 22:06:36 +0200 Subject: [PATCH] Bugfix: Actually set border width in config_directives.c (Thanks strcat) --- src/config_directives.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config_directives.c b/src/config_directives.c index 80439ca4..8b636c02 100644 --- a/src/config_directives.c +++ b/src/config_directives.c @@ -318,6 +318,8 @@ CFGFUN(new_window, const char *windowtype, const char *border, const long width) } else { config.default_floating_border = border_style; } + + config.default_border_width = border_width; } CFGFUN(hide_edge_borders, const char *borders) {