From: Marco Peereboom Date: Wed, 8 Jun 2011 20:32:52 +0000 (+0000) Subject: grmbl debug X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=10594845c46c47ef1e8fb27c30c1ad26dc71f459;hp=0219544e45cbddeabe203a26dc403c100c2ff22f;p=spectrwm.git grmbl debug --- diff --git a/scrotwm.c b/scrotwm.c index 8dfb36b..4b390a7 100644 --- a/scrotwm.c +++ b/scrotwm.c @@ -2132,9 +2132,9 @@ swapwin(struct swm_region *r, union arg *args) return; } + /* keep transients after the parent */ if (source && source->transient) { t = find_window(source->transient); - fprintf(stderr, "source migrate trans %p\n", t); if (t) { TAILQ_REMOVE(wl, t, entry); TAILQ_INSERT_AFTER(wl, source, t, entry); @@ -2142,7 +2142,6 @@ swapwin(struct swm_region *r, union arg *args) } if (target && target->transient) { t = find_window(target->transient); - fprintf(stderr, "target migrate trans\n"); if (t) { TAILQ_REMOVE(wl, t, entry); TAILQ_INSERT_AFTER(wl, target, t, entry);