Increase the escape delay when waiting for an RGB response no matter

when it is triggered (they can also be sent on resize). GitHub issue
4569.
This commit is contained in:
nicm
2025-09-01 07:58:09 +00:00
parent af36d7c430
commit cfb906a0ce
3 changed files with 38 additions and 19 deletions

View File

@ -3358,7 +3358,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);
@ -3958,5 +3958,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);
}