From: Marco Peereboom Date: Thu, 15 Jan 2009 17:27:34 +0000 (+0000) Subject: When moving windows to an empty workspace make sure we focus on the window X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=9888af9f7ff2cb4b56cf4ba9eb34ac83640143e9;p=spectrwm.git When moving windows to an empty workspace make sure we focus on the window that just moved there. --- diff --git a/scrotwm.c b/scrotwm.c index c6e0439..6980e78 100644 --- a/scrotwm.c +++ b/scrotwm.c @@ -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;