aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2019-08-28 07:34:32 +0000
committernicm <nicm>2019-08-28 07:34:32 +0000
commitdf0334d3b397de03a81411f1101a8e82a55b9be9 (patch)
treecfedad4e0309bb39d6f1dbb43d0f547c4def4e7b /tmux.h
parent39c55d5b6fcafd9476528ebc1064192c90f559a4 (diff)
downloadrtmux-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.h1
1 files changed, 1 insertions, 0 deletions
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;