Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
| inline |
side by side
applied anydots proposal to let togglefloating restore fixed windows
[dwm.git]
/
client.c
diff --git
a/client.c
b/client.c
index
cf3a686
..
040dd15
100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-305,6
+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->minh, True);
lt->arrange();
}