patch 8.1.1453: popup window "moved" property not implemented yet
Problem: Popup window "moved" property not implemented yet.
Solution: Implement it.
diff --git a/src/screen.c b/src/screen.c
index f179618..8c97e88 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -1050,6 +1050,7 @@
// so that the window with a higher zindex is drawn later, thus goes on
// top.
// TODO: don't redraw every popup every time.
+ popup_visible = FALSE;
popup_reset_handled();
while ((wp = find_next_popup(TRUE)) != NULL)
{
@@ -1066,6 +1067,7 @@
// Draw the popup text.
win_update(wp);
+ popup_visible = TRUE;
wp->w_winrow -= top_off;
wp->w_wincol -= left_off;