Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2025-09-01 12:01:08 +01:00
8 changed files with 61 additions and 27 deletions

View File

@ -3354,7 +3354,7 @@ server_client_dispatch(struct imsg *imsg, void *arg)
break;
server_client_update_latest(c);
tty_resize(&c->tty);
tty_repeat_requests(&c->tty);
tty_repeat_requests(&c->tty, 0);
recalculate_sizes();
if (c->overlay_resize == NULL)
server_client_clear_overlay(c);
@ -3959,5 +3959,5 @@ server_client_report_theme(struct client *c, enum client_theme theme)
* Request foreground and background colour again. Don't forward 2031 to
* panes until a response is received.
*/
tty_puts(&c->tty, "\033]10;?\033\\\033]11;?\033\\");
tty_repeat_requests(&c->tty, 1);
}