diff options
author | nicm <nicm> | 2022-02-17 09:58:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-04-06 14:19:49 +0100 |
commit | 4893edd5d67e80e8d4323f6cae02495a7164e3f0 (patch) | |
tree | ebc277f5ec554d6503b560c48131714420824348 /options-table.c | |
parent | 6a0a783c268b00df165b115d915b628e36a0f69b (diff) | |
download | rtmux-4893edd5d67e80e8d4323f6cae02495a7164e3f0.tar.gz rtmux-4893edd5d67e80e8d4323f6cae02495a7164e3f0.tar.bz2 rtmux-4893edd5d67e80e8d4323f6cae02495a7164e3f0.zip |
Add a window-resized hook which is fired when the window is actually
resized which may be later than the client resize, GitHub issue 2995.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/options-table.c b/options-table.c index c8ae046e..b8a5ccbb 100644 --- a/options-table.c +++ b/options-table.c @@ -1245,6 +1245,7 @@ const struct options_table_entry options_table[] = { OPTIONS_TABLE_HOOK("window-linked", ""), OPTIONS_TABLE_WINDOW_HOOK("window-pane-changed", ""), OPTIONS_TABLE_WINDOW_HOOK("window-renamed", ""), + OPTIONS_TABLE_WINDOW_HOOK("window-resized", ""), OPTIONS_TABLE_HOOK("window-unlinked", ""), { .name = NULL } |