aboutsummarylogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe2008-07-29 11:32:22 +0100
committerAnselm R Garbe2008-07-29 11:32:22 +0100
commite309ac21673d6b212645f722853aa84e4aa58e29 (patch)
tree3a367d73588bbbf639aac1efa150c0f27c5e0a01 /dwm.c
parent14554a2a0f3a32ef739397b46a1fd58153502854 (diff)
downloadaur-e309ac21673d6b212645f722853aa84e4aa58e29.tar.gz
forcing fullscreen windows to bw=0, though most fullscreen apps are broken anyways
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index 52bb9f1022a7..5f3b9c945af7 100644
--- a/dwm.c
+++ b/dwm.c
@@ -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)