Xinqi Bao's Git
projects
/
dwm.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
6b25d06
)
applied sanders jukka patch
author
arg@mmvi <unknown>
Mon, 25 Sep 2006 18:38:30 +0000
(20:38 +0200)
committer
arg@mmvi <unknown>
Mon, 25 Sep 2006 18:38:30 +0000
(20:38 +0200)
dwm.h
diff
|
blob
|
history
event.c
diff
|
blob
|
history
view.c
diff
|
blob
|
history
diff --git
a/dwm.h
b/dwm.h
index
e749f2c
..
c30f2b3
100644
(file)
--- a/
dwm.h
+++ b/
dwm.h
@@
-101,7
+101,7
@@
extern void (*handler[LASTEvent])(XEvent *); /* event handler */
extern void (*arrange)(Arg *); /* arrange function, indicates mode */
extern Atom wmatom[WMLast], netatom[NetLast];
extern Bool running, issel, *seltag; /* seltag is array of Bool */
extern void (*arrange)(Arg *); /* arrange function, indicates mode */
extern Atom wmatom[WMLast], netatom[NetLast];
extern Bool running, issel, *seltag; /* seltag is array of Bool */
-extern Client *clients, *sel, *stack; /* global cl
ei
nt list and stack */
+extern Client *clients, *sel, *stack; /* global cl
ie
nt list and stack */
extern Cursor cursor[CurLast];
extern DC dc; /* global draw context */
extern Display *dpy;
extern Cursor cursor[CurLast];
extern DC dc; /* global draw context */
extern Display *dpy;
diff --git
a/event.c
b/event.c
index
83301bc
..
df0a5ef
100644
(file)
--- a/
event.c
+++ b/
event.c
@@
-190,11
+190,7
@@
configurerequest(XEvent *e) {
XWindowChanges wc;
if((c = getclient(ev->window))) {
XWindowChanges wc;
if((c = getclient(ev->window))) {
- if((c == sel) && !c->isfloat && (arrange != dofloat)) {
- synconfig(c, sx, sy + bh, sw - 2, sh - 2 - bh, ev->border_width);
- XSync(dpy, False);
- return;
- }
+ c->ismax = False;
gravitate(c, True);
if(ev->value_mask & CWX)
c->x = ev->x;
gravitate(c, True);
if(ev->value_mask & CWX)
c->x = ev->x;
diff --git
a/view.c
b/view.c
index
44c0b30
..
e799094
100644
(file)
--- a/
view.c
+++ b/
view.c
@@
-101,9
+101,8
@@
dotile(Arg *arg) {
Client *c;
w = sw - mw;
Client *c;
w = sw - mw;
- for(n = 0, c = clients; c; c = c->next)
- if(isvisible(c) && !c->isfloat)
- n++;
+ for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
+ n++;
if(n > 1)
h = (sh - bh) / (n - 1);
if(n > 1)
h = (sh - bh) / (n - 1);
@@
-116,8
+115,7
@@
dotile(Arg *arg) {
resize(c, True, TopLeft);
continue;
}
resize(c, True, TopLeft);
continue;
}
- if(c->ismax)
- togglemax(c);
+ c->ismax = False;
if(n == 1) {
c->x = sx;
c->y = sy + bh;
if(n == 1) {
c->x = sx;
c->y = sy + bh;