mirror of
https://github.com/vim/vim.git
synced 2025-09-28 04:24:06 -04:00
patch 8.1.1499: ruler not updated after popup window was removed
Problem: Ruler not updated after popup window was removed. Solution: use popup_mask in screen_puts().
This commit is contained in:
@@ -7897,7 +7897,11 @@ screen_puts_len(
|
||||
|| ScreenAttrs[off] != attr
|
||||
|| exmode_active;
|
||||
|
||||
if (need_redraw || force_redraw_this)
|
||||
if ((need_redraw || force_redraw_this)
|
||||
#ifdef FEAT_TEXT_PROP
|
||||
&& popup_mask[row * screen_Columns + col] <= screen_zindex
|
||||
#endif
|
||||
)
|
||||
{
|
||||
#if defined(FEAT_GUI) || defined(UNIX)
|
||||
/* The bold trick makes a single row of pixels appear in the next
|
||||
|
Reference in New Issue
Block a user