aboutsummaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <anselm@garbe.us>2009-06-23 17:39:42 +0100
committerAnselm R Garbe <anselm@garbe.us>2009-06-23 17:39:42 +0100
commit7de534192cb53e595f8e29bd9757518b2d9e8860 (patch)
treef439986a5c83d4d211d3e72431a5db7507b5c404 /dwm.c
parent54dc0d542cbc8eada2250fe80d161a272f30ddac (diff)
simplified left over re-assignment
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/dwm.c b/dwm.c
index 4ff4f9d..fbda0bb 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1714,18 +1714,12 @@ updategeom(void) {
/* reassign left over clients of disappeared monitors */
for(tm = mons; tm; tm = tm->next) {
- while(tm->clients) {
- c = tm->clients->next;
- tm->clients->next = newmons->clients;
- tm->clients->mon = newmons;
- newmons->clients = tm->clients;
- tm->clients = c;
- }
- while(tm->stack) {
- c = tm->stack->snext;
- tm->stack->snext = newmons->stack;
- newmons->sel = newmons->stack = tm->stack;
- tm->stack = c;
+ while((c = tm->clients)) {
+ detach(c);
+ detachstack(c);
+ c->mon = newmons;
+ attach(c);
+ attachstack(c);
}
}