mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 14:05:45 +02:00
Adding fix for attachbottom patch
This commit is contained in:
parent
11b47dda99
commit
a84f1b01d2
@ -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)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user