From 9888af9f7ff2cb4b56cf4ba9eb34ac83640143e9 Mon Sep 17 00:00:00 2001 From: Marco Peereboom Date: Thu, 15 Jan 2009 17:27:34 +0000 Subject: [PATCH] When moving windows to an empty workspace make sure we focus on the window that just moved there. --- scrotwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 1.7.10.4