Correctly unzoom and redraw panes in switch-client.

pull/1545/head
nicm 2018-11-06 15:13:13 +00:00
parent ef904cfef2
commit f9881b3b5d
1 changed files with 4 additions and 1 deletions

View File

@ -113,8 +113,11 @@ cmd_switch_client_exec(struct cmd *self, struct cmdq_item *item)
if (item->client == NULL)
return (CMD_RETURN_NORMAL);
if (wl != NULL) {
if (wp != NULL)
server_unzoom_window(wl->window);
if (wp != NULL) {
window_redraw_active_switch(wp->window, wp);
window_set_active_pane(wp->window, wp);
}
session_set_current(s, wl);
cmd_find_from_session(&item->shared->current, s, 0);
}