pinosaur
/
dwm.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
caa7ab5
)
applied Sanders patch
author
Anselm R. Garbe
<arg@suckless.org>
Mon, 28 May 2007 13:05:47 +0000
(15:05 +0200)
committer
Anselm R. Garbe
<arg@suckless.org>
Mon, 28 May 2007 13:05:47 +0000
(15:05 +0200)
client.c
patch
|
blob
|
history
diff --git
a/client.c
b/client.c
index
040dd15
..
f3d31cb
100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-305,8
+305,8
@@
togglefloating(const char *arg) {
if(!sel || lt->arrange == floating)
return;
sel->isfloating = !sel->isfloating;
- if(sel->isfloating
&& sel->isfixed
)
- resize(sel, sel->x, sel->y, sel->
minw, sel->min
h, True);
+ if(sel->isfloating)
+ resize(sel, sel->x, sel->y, sel->
w, sel->
h, True);
lt->arrange();
}