Bugfix: When re-assigning floating windows to a different output, use the last focused workspace, not the first

next
Michael Stapelberg 2011-05-02 11:05:50 +02:00
parent 79323a0be0
commit b2754fd679
1 changed files with 1 additions and 1 deletions

View File

@ -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));