Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
fixed issue pointed out by Jukka
[dwm.git]
/
view.c
diff --git
a/view.c
b/view.c
index
80d483a
..
bb32235
100644
(file)
--- a/
view.c
+++ b/
view.c
@@
-61,8
+61,6
@@
void
dofloat(Arg *arg) {
Client *c;
dofloat(Arg *arg) {
Client *c;
- maximized = False;
-
for(c = clients; c; c = c->next) {
if(isvisible(c)) {
resize(c, True, TopLeft);
for(c = clients; c; c = c->next) {
if(isvisible(c)) {
resize(c, True, TopLeft);
@@
-82,8
+80,6
@@
dotile(Arg *arg) {
int h, i, n, w;
Client *c;
int h, i, n, w;
Client *c;
- maximized = False;
-
w = sw - mw;
for(n = 0, c = clients; c; c = c->next)
if(isvisible(c) && !c->isfloat)
w = sw - mw;
for(n = 0, c = clients; c; c = c->next)
if(isvisible(c) && !c->isfloat)
@@
-190,7
+186,7
@@
resizecol(Arg *arg) {
for(n = 0, c = clients; c; c = c->next)
if(isvisible(c) && !c->isfloat)
n++;
for(n = 0, c = clients; c; c = c->next)
if(isvisible(c) && !c->isfloat)
n++;
- if(!sel || sel->isfloat || n < 2 || (arrange != dotile)
|| maximized
)
+ if(!sel || sel->isfloat || n < 2 || (arrange != dotile))
return;
if(sel == getnext(clients)) {
return;
if(sel == getnext(clients)) {
@@
-273,13
+269,28
@@
viewall(Arg *arg) {
void
zoom(Arg *arg) {
void
zoom(Arg *arg) {
+ int tmp;
unsigned int n;
Client *c;
unsigned int n;
Client *c;
+ XEvent ev;
+
+ if(!sel)
+ return;
+
+ if(sel->isfloat || (arrange == dofloat)) {
+ sel->x = sx;
+ sel->y = bh;
+ sel->w = sw;
+ sel->h = sh - bh;
+ resize(sel, True, TopLeft);
+ while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
+ return;
+ }
for(n = 0, c = clients; c; c = c->next)
if(isvisible(c) && !c->isfloat)
n++;
for(n = 0, c = clients; c; c = c->next)
if(isvisible(c) && !c->isfloat)
n++;
- if(
!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized
)
+ if(
n < 2 || (arrange != dotile)
)
return;
if((c = sel) == nexttiled(clients))
return;
if((c = sel) == nexttiled(clients))