comparison src/structs.h @ 17162:f16cee6adf29 v8.1.1580

patch 8.1.1580: cannot make part of a popup transparent commit https://github.com/vim/vim/commit/c662ec9978e9a381680ffe53d05da0e10bb8d1a0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 23 00:15:57 2019 +0200 patch 8.1.1580: cannot make part of a popup transparent Problem: Cannot make part of a popup transparent. Solution: Add the "mask" option.
author Bram Moolenaar <Bram@vim.org>
date Sun, 23 Jun 2019 00:30:04 +0200
parents b439e096a011
children 8581779aa16f
comparison
equal deleted inserted replaced
17161:9ccb1ea9b2fc 17162:f16cee6adf29
2914 win_T *w_popup_curwin; // close popup if curwin differs 2914 win_T *w_popup_curwin; // close popup if curwin differs
2915 linenr_T w_popup_lnum; // close popup if cursor not on this line 2915 linenr_T w_popup_lnum; // close popup if cursor not on this line
2916 colnr_T w_popup_mincol; // close popup if cursor before this col 2916 colnr_T w_popup_mincol; // close popup if cursor before this col
2917 colnr_T w_popup_maxcol; // close popup if cursor after this col 2917 colnr_T w_popup_maxcol; // close popup if cursor after this col
2918 int w_popup_drag; // allow moving the popup with the mouse 2918 int w_popup_drag; // allow moving the popup with the mouse
2919 list_T *w_popup_mask; // list of lists for "mask"
2919 2920
2920 # if defined(FEAT_TIMERS) 2921 # if defined(FEAT_TIMERS)
2921 timer_T *w_popup_timer; // timer for closing popup window 2922 timer_T *w_popup_timer; // timer for closing popup window
2922 # endif 2923 # endif
2923 #endif 2924 #endif