diff options
author | nicm <nicm> | 2019-08-28 07:34:32 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-08-28 07:34:32 +0000 |
commit | df0334d3b397de03a81411f1101a8e82a55b9be9 (patch) | |
tree | cfedad4e0309bb39d6f1dbb43d0f547c4def4e7b /tmux.h | |
parent | 39c55d5b6fcafd9476528ebc1064192c90f559a4 (diff) | |
download | rtmux-df0334d3b397de03a81411f1101a8e82a55b9be9.tar.gz rtmux-df0334d3b397de03a81411f1101a8e82a55b9be9.tar.bz2 rtmux-df0334d3b397de03a81411f1101a8e82a55b9be9.zip |
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.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |