Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
5767699
)
reverted Peters patch to tile, I will discuss the reasons at dwm@
author
Anselm R. Garbe <
[email protected]
>
Mon, 1 Oct 2007 19:25:15 +0000
(21:25 +0200)
committer
Anselm R. Garbe <
[email protected]
>
Mon, 1 Oct 2007 19:25:15 +0000
(21:25 +0200)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
c4a705d
..
50f4ea0
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-646,11
+646,8
@@
enternotify(XEvent *e) {
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
return;
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
return;
- if((c = getclient(ev->window)))
{
+ if((c = getclient(ev->window)))
focus(c);
focus(c);
- if(ISTILE && !c->isfloating)
- restack();
- }
else if(ev->window == root) {
selscreen = True;
focus(NULL);
else if(ev->window == root) {
selscreen = True;
focus(NULL);
@@
-1595,7
+1592,7
@@
tile(void) {
else { /* tile window */
if(i == 1) {
ny = way;
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 */
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)
}
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;
}
}
}
}