summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-07 18:28:14 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-07 18:28:14 +0200
commitb3d17a20d243f65bcfe23de08b7afd948c5132c2 (patch)
treed5cf97466bfab6199a02fa2db200bee4bf054337 /src/normal.c
parent5b19e5b919ec568792e2e2301899f0e58cf9e550 (diff)
downloadvim-git-b3d17a20d243f65bcfe23de08b7afd948c5132c2.tar.gz
patch 8.1.1645: cannot use a popup window for a balloonv8.1.1645
Problem: Cannot use a popup window for a balloon. Solution: Add popup_beval(). Add the "mousemoved" property. Add the screenpos() function.
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/normal.c b/src/normal.c
index 5c9f929d5..f626f45dc 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -2329,6 +2329,9 @@ do_mouse(
bevalexpr_due_set = TRUE;
}
#endif
+#ifdef FEAT_TEXT_PROP
+ popup_handle_mouse_moved();
+#endif
return FALSE;
}