Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2024-10-05 16:01:07 +01:00
2 changed files with 4 additions and 1 deletions

View File

@ -117,6 +117,7 @@ server_client_set_overlay(struct client *c, u_int delay,
c->tty.flags |= TTY_FREEZE;
if (c->overlay_mode == NULL)
c->tty.flags |= TTY_NOCURSOR;
window_update_focus(c->session->curw->window);
server_redraw_client(c);
}
@ -141,6 +142,7 @@ server_client_clear_overlay(struct client *c)
c->overlay_data = NULL;
c->tty.flags &= ~(TTY_FREEZE|TTY_NOCURSOR);
window_update_focus(c->session->curw->window);
server_redraw_client(c);
}