JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
applied anydots proposal to let togglefloating restore fixed windows
[dwm.git] / client.c
index 3e9b239..040dd15 100644 (file)
--- a/client.c
+++ b/client.c
@@ -304,7 +304,9 @@ void
 togglefloating(const char *arg) {
        if(!sel || lt->arrange == floating)
                return;
-       sel->isfloating = !sel->isfloating || sel->isfixed;
+       sel->isfloating = !sel->isfloating;
+       if(sel->isfloating && sel->isfixed)
+               resize(sel, sel->x, sel->y, sel->minw, sel->minh, True);
        lt->arrange();
 }