From 451d4b5b7c7262631cd1f5057c75d6f5f5772fb1 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 12 Jun 2019 20:22:27 +0200 Subject: patch 8.1.1520: popup windows are ignored when dealing with mouse position Problem: Popup windows are ignored when dealing with mouse position Solution: Find the mouse position inside a popup window. Allow for modeless selection. --- src/beval.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/beval.c') diff --git a/src/beval.c b/src/beval.c index d51a3f5d84..e89b1fe50b 100644 --- a/src/beval.c +++ b/src/beval.c @@ -49,7 +49,7 @@ get_beval_info( col = X_2_COL(beval->x); } #endif - wp = mouse_find_win(&row, &col); + wp = mouse_find_win(&row, &col, FAIL_POPUP); if (wp != NULL && row >= 0 && row < wp->w_height && col < wp->w_width) { /* Found a window and the cursor is in the text. Now find the line @@ -141,6 +141,7 @@ get_beval_info( /* * Show a balloon with "mesg" or "list". + * Hide the balloon when both are NULL. */ void post_balloon(BalloonEval *beval UNUSED, char_u *mesg, list_T *list UNUSED) @@ -153,7 +154,7 @@ post_balloon(BalloonEval *beval UNUSED, char_u *mesg, list_T *list UNUSED) # endif # ifdef FEAT_BEVAL_GUI if (gui.in_use) - /* GUI can't handle a list */ + // GUI can't handle a list gui_mch_post_balloon(beval, mesg); # endif } -- cgit v1.2.3