summaryrefslogtreecommitdiffstats
path: root/popup.c
diff options
context:
space:
mode:
authornicm <nicm>2024-03-21 11:30:42 +0000
committernicm <nicm>2024-03-21 11:30:42 +0000
commit6c0067c10360880334afa50815b880d04edcbf42 (patch)
tree78625f90a92275f9de0cbdda102d5526a82302c9 /popup.c
parent5458cb28502dbdce933827853c31b276b51f3741 (diff)
Do not notify window-layout-changed if the window is about to be
destroyed (since it may have been freed by the time the notify happens), from Romain Francoise in GitHub issue 3860.
Diffstat (limited to 'popup.c')
-rw-r--r--popup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/popup.c b/popup.c
index 38a4c17f..804dd6ef 100644
--- a/popup.c
+++ b/popup.c
@@ -346,7 +346,7 @@ popup_make_pane(struct popup_data *pd, enum layout_type type)
u_int hlimit;
const char *shell;
- window_unzoom(w);
+ window_unzoom(w, 1);
lc = layout_split_pane(wp, type, -1, 0);
hlimit = options_get_number(s->options, "history-limit");