diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-02-06 14:22:32 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-02-06 14:22:32 +0100 |
commit | 650264367725af6740b94cfd24d9f5caf0e91356 (patch) | |
tree | 29b4042b844235dbe15acd62e4af8c334a2c7fd9 /src/popupwin.c | |
parent | f5a5116a96b1877c3f44e7bae288fd6603151eb1 (diff) | |
download | vim-git-650264367725af6740b94cfd24d9f5caf0e91356.tar.gz |
patch 8.2.2470: popup_getoptions() does not get textprop from other tabv8.2.2470
Problem: Popup_getoptions() does not get textprop from other tab.
Solution: use win_valid_any_tab(). (closes #7786)
Diffstat (limited to 'src/popupwin.c')
-rw-r--r-- | src/popupwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/popupwin.c b/src/popupwin.c index fddcaa1b4..0896f1700 100644 --- a/src/popupwin.c +++ b/src/popupwin.c @@ -2983,7 +2983,7 @@ f_popup_getoptions(typval_T *argvars, typval_T *rettv) dict_add_number(dict, "scrollbar", wp->w_want_scrollbar); dict_add_number(dict, "zindex", wp->w_zindex); dict_add_number(dict, "fixed", wp->w_popup_fixed); - if (wp->w_popup_prop_type && win_valid(wp->w_popup_prop_win)) + if (wp->w_popup_prop_type && win_valid_any_tab(wp->w_popup_prop_win)) { proptype_T *pt = text_prop_type_by_id( wp->w_popup_prop_win->w_buffer, |