From df0334d3b397de03a81411f1101a8e82a55b9be9 Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 28 Aug 2019 07:34:32 +0000 Subject: The resize event was never deciding to actually resize the pane if there was output in the pane faster than the timer would fire, so change how it works to only defer the timer again if the pane was actually resized within the last timer period. Reported by James Tai in GitHub issue 1880. --- tmux.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 0cd2708d..2b69b002 100644 --- a/tmux.h +++ b/tmux.h @@ -843,6 +843,7 @@ struct window_pane { #define PANE_STATUSDRAWN 0x400 #define PANE_EMPTY 0x800 #define PANE_STYLECHANGED 0x1000 +#define PANE_RESIZED 0x2000 int argc; char **argv; -- cgit