mirror of
https://github.com/tmux/tmux.git
synced 2025-09-06 00:37:06 +00:00
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:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user