Separate border width for floating windows

Floating windows already had their own border style, but the width was
the same for all windows.

The configuration directives 'new_window' and 'new_float' can now be
used simultaneously to have different border widths for floating and
tiled windows.

fixes #1244
This commit is contained in:
Aleksi Blinnikka
2014-05-09 19:33:38 +03:00
committed by Michael Stapelberg
parent e707e0a5fa
commit 89dd868e82
6 changed files with 109 additions and 8 deletions

View File

@ -430,7 +430,11 @@ void manage_window(xcb_window_t window, xcb_get_window_attributes_cookie_t cooki
if (motif_border_style != BS_NORMAL) {
DLOG("MOTIF_WM_HINTS specifies decorations (border_style = %d)\n", motif_border_style);
con_set_border_style(nc, motif_border_style, config.default_border_width);
if (want_floating) {
con_set_border_style(nc, motif_border_style, config.default_floating_border_width);
} else {
con_set_border_style(nc, motif_border_style, config.default_border_width);
}
}
/* to avoid getting an UnmapNotify event due to reparenting, we temporarily