diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-28 22:20:10 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-28 22:20:10 +0100 |
commit | e52e0c89d1a6305beca3c01f89a4892dcb43bc71 (patch) | |
tree | d54216cc94ae0eb3c8a737b3298be99b9360297c /src/vim.h | |
parent | 80ae880f5fed8022c69d05dd1efee49259929cb5 (diff) | |
download | vim-git-e52e0c89d1a6305beca3c01f89a4892dcb43bc71.tar.gz |
patch 8.2.0328: no redraw when leaving term-normal mode in popup terminalv8.2.0328
Problem: No redraw when leaving terminal-normal mode in a terminal popup
window.
Solution: Redraw the popup window. (closes #5708)
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -640,12 +640,6 @@ extern int (*dyn_libintl_wputenv)(const wchar_t *envstring); #define POPUP_HANDLED_4 0x08 // used by may_update_popup_mask() #define POPUP_HANDLED_5 0x10 // used by update_popups() -#ifdef FEAT_PROP_POPUP -# define WIN_IS_POPUP(wp) ((wp)->w_popup_flags != 0) -#else -# define WIN_IS_POPUP(wp) 0 -#endif - /* * Terminal highlighting attribute bits. * Attributes above HL_ALL are used for syntax highlighting. |