When moving windows to an empty workspace make sure we focus on the window

that just moved there.
This commit is contained in:
Marco Peereboom 2009-01-15 17:27:34 +00:00
parent eb4c85488d
commit 9888af9f7f

View file

@ -842,7 +842,7 @@ send_to_ws(union arg *args)
TAILQ_REMOVE(&ws[current_ws].winlist, win, entry);
TAILQ_INSERT_TAIL(&ws[wsid].winlist, win, entry);
if (count_win(wsid, 1) == 0)
if (count_win(wsid, 1) == 1)
ws[wsid].focus = win;
ws[wsid].restack = 1;