aboutsummaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-10-01 21:25:15 +0200
committerAnselm R. Garbe <garbeam@gmail.com>2007-10-01 21:25:15 +0200
commit95091dcad461f77a641c1c4fe87d49576b79e3fe (patch)
treec987105b7c47d33c8627bb8f1c4f6c9dbf93f0fe /dwm.c
parent57676994ea53634c3944bcd72c246cc98392564b (diff)
reverted Peters patch to tile, I will discuss the reasons at dwm@
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/dwm.c b/dwm.c
index c4a705d..50f4ea0 100644
--- a/dwm.c
+++ b/dwm.c
@@ -646,11 +646,8 @@ enternotify(XEvent *e) {
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
return;
- if((c = getclient(ev->window))) {
+ if((c = getclient(ev->window)))
focus(c);
- if(ISTILE && !c->isfloating)
- restack();
- }
else if(ev->window == root) {
selscreen = True;
focus(NULL);
@@ -1595,7 +1592,7 @@ tile(void) {
else { /* tile window */
if(i == 1) {
ny = way;
- nx += mc->w + mc->border;
+ nx += mc->w + 2 * mc->border;
nw = waw - nx - 2 * c->border;
}
if(i + 1 == n) /* remainder */
@@ -1605,7 +1602,7 @@ tile(void) {
}
resize(c, nx, ny, nw, nh, RESIZEHINTS);
if(n > 1 && th != wah)
- ny = c->y + c->h + c->border;
+ ny = c->y + c->h + 2 * c->border;
}
}