From: Jason Woofenden Date: Mon, 17 Nov 2014 22:19:52 +0000 (-0500) Subject: focus new master when closing master X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=0f44b250c447cf79c42b0bd7533ffa2b8bacf04c focus new master when closing master --- diff --git a/dwm.c b/dwm.c index f8467d6..f123400 100644 --- a/dwm.c +++ b/dwm.c @@ -695,9 +695,10 @@ detachstack(Client *c) { // WARNING if you detach() before detachstack() this will select last visible window for(i = nextvisible(c->mon->clients); i && i != c; i = nextvisible(i->next)) next_sel = i; - // failing that, find first visible window + // failing that, find first visible window (besides c) if (!next_sel) - for(i = nextvisible(c->mon->clients); i && i != c; i = nextvisible(i->next)) + for(i = nextvisible(c->mon->clients); i && i == c; i = nextvisible(i->next)); + if (i != c) next_sel = i; c->mon->sel = next_sel; }