Adding fix for attachbottom patch

This commit is contained in:
bakkeby 2020-04-22 20:04:09 +02:00
parent 11b47dda99
commit a84f1b01d2

View File

@ -34,8 +34,9 @@ attachx(Client *c)
for (at = c->mon->clients; at && at->next; at = at->next); for (at = c->mon->clients; at && at->next; at = at->next);
if (at) { if (at) {
at->next = c; at->next = c;
c->next = NULL;
return; return;
} }
#endif #endif
attach(c); // master (default) attach(c); // master (default)
} }