From b2754fd67907ba974387671d4ef01e5802042e93 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 2 May 2011 11:05:50 +0200 Subject: [PATCH] Bugfix: When re-assigning floating windows to a different output, use the last focused workspace, not the first --- src/floating.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/floating.c b/src/floating.c index 23f8a60a..875407a7 100644 --- a/src/floating.c +++ b/src/floating.c @@ -262,7 +262,7 @@ bool floating_maybe_reassign_ws(Con *con) { DLOG("Need to re-assign!\n"); Con *content = output_get_content(output->con); - Con *ws = TAILQ_FIRST(&(content->nodes_head)); + Con *ws = TAILQ_FIRST(&(content->focus_head)); DLOG("Moving con %p / %s to workspace %p / %s\n", con, con->name, ws, ws->name); con_move_to_workspace(con, ws); con_focus(con_descend_focused(con)); -- 2.39.5