1
0
forked from aniani/vim

patch 8.0.1161: popup menu drawing problem when resizing terminal

Problem:    Popup menu drawing problem when resizing terminal.
Solution:   Redraw after resizing also when a popup menu is visible. (Ozaki
            Kiichi, closes #2110)
This commit is contained in:
Bram Moolenaar
2017-09-29 22:42:33 +02:00
parent 816968defc
commit a5e6621aad
5 changed files with 214 additions and 173 deletions

View File

@@ -3271,11 +3271,10 @@ set_shellsize(int width, int height, int mustset)
if (pum_visible())
{
redraw_later(NOT_VALID);
ins_compl_show_pum(); /* This includes the redraw. */
ins_compl_show_pum();
}
else
#endif
update_screen(NOT_VALID);
update_screen(NOT_VALID);
if (redrawing())
setcursor();
}