diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-07-29 11:32:22 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-07-29 11:32:22 +0100 |
commit | 4a2902efe49571432544f356a946170ff9e6f415 (patch) | |
tree | 71f9354848ec45bc1143d3325b94251c3804b0c8 | |
parent | 6fad4c49f17f154b49846d379e347897b747f793 (diff) | |
download | dwm-4a2902efe49571432544f356a946170ff9e6f415.tar.gz |
forcing fullscreen windows to bw=0, though most fullscreen apps are broken anyways5.1
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -904,7 +904,7 @@ manage(Window w, XWindowAttributes *wa) { if(c->w == sw && c->h == sh) { c->x = sx; c->y = sy; - c->bw = wa->border_width; + c->bw = 0; } else { if(c->x + c->w + 2 * c->bw > sx + sw) |