forked from aniani/vim
patch 8.2.2471: popup_setoptions() does not set textprop in other tab
Problem: Popup_setoptions() does not set textprop in other tab. Solution: use win_valid_any_tab(). (closes #7788)
This commit is contained in:
@@ -461,7 +461,7 @@ apply_move_options(win_T *wp, dict_T *d)
|
||||
if (di != NULL)
|
||||
{
|
||||
wp->w_popup_prop_win = find_win_by_nr_or_id(&di->di_tv);
|
||||
if (!win_valid(wp->w_popup_prop_win))
|
||||
if (!win_valid_any_tab(wp->w_popup_prop_win))
|
||||
wp->w_popup_prop_win = curwin;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user