diff src/popupwin.c @ 17125:b4eb06233448 v8.1.1562

patch 8.1.1562: popup window not always redrawn after popup_setoptions() commit https://github.com/vim/vim/commit/ad24a71e2248e839c875c0bc0e6ad3dbeea16998 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 17 20:05:45 2019 +0200 patch 8.1.1562: popup window not always redrawn after popup_setoptions() Problem: Popup window not always redrawn after popup_setoptions(). Solution: Force a redraw.
author Bram Moolenaar <Bram@vim.org>
date Mon, 17 Jun 2019 20:15:06 +0200
parents efc6f5e3b543
children c90fdb999393
line wrap: on
line diff
--- a/src/popupwin.c
+++ b/src/popupwin.c
@@ -1449,6 +1449,7 @@ f_popup_setoptions(typval_T *argvars, ty
     apply_move_options(wp, dict);
     apply_general_options(wp, dict);
 
+    popup_mask_refresh = TRUE;
     popup_adjust_position(wp);
 }