mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.1.2277: terminal window is not updated when info popup changes
Problem: Terminal window is not updated when info popup changes. Solution: Redraw windows when re-using an info popup. (closes #5192)
This commit is contained in:
parent
5bf46e9786
commit
b73e439606
@ -4971,6 +4971,9 @@ prepare_tagpreview(
|
||||
popup_show(wp);
|
||||
else
|
||||
popup_hide(wp);
|
||||
// When the popup moves or resizes it may reveal part of
|
||||
// another window. TODO: can this be done more efficiently?
|
||||
redraw_all_later(NOT_VALID);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -741,6 +741,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2277,
|
||||
/**/
|
||||
2276,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user