Bugfix: Don’t lose focus when putting windows into floating

This commit is contained in:
Michael Stapelberg 2009-06-26 04:34:36 +02:00
parent 319f6d669f
commit ab48d714cf
1 changed files with 5 additions and 1 deletions

View File

@ -975,7 +975,11 @@ void parse_command(xcb_connection_t *conn, const char *command) {
fix_colrowspan(conn, last_focused->workspace); fix_colrowspan(conn, last_focused->workspace);
render_workspace(conn, last_focused->workspace->screen, last_focused->workspace); render_workspace(conn, last_focused->workspace->screen, last_focused->workspace);
xcb_flush(conn);
/* Re-focus the client because cleanup_table sets the focus to the last
* focused client inside a container only. */
set_focus(conn, last_focused, true);
return; return;
} }