From 8e5f5b47c2198ffa4161c21a4140eaa9bed46f37 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 26 Aug 2015 23:12:38 +0200 Subject: patch 7.4.840 Problem: Tooltip window stays open. Solution: Send a WM_CLOSE message. (Jurgen Kramer) --- src/gui_w32.c | 1 + src/version.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/gui_w32.c b/src/gui_w32.c index 463351eea7..20e94c3690 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -4836,6 +4836,7 @@ make_tooltip(beval, text, pt) delete_tooltip(beval) BalloonEval *beval; { + PostMessage(beval->balloon, WM_CLOSE, 0, 0); PostMessage(beval->balloon, WM_DESTROY, 0, 0); PostMessage(beval->balloon, WM_NCDESTROY, 0, 0); } diff --git a/src/version.c b/src/version.c index a69d93dc46..b842fcf76b 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 840, /**/ 839, /**/ -- cgit v1.2.3