summaryrefslogtreecommitdiff
path: root/src/gui_w32.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-08-26 23:12:38 +0200
committerBram Moolenaar <Bram@vim.org>2015-08-26 23:12:38 +0200
commit8e5f5b47c2198ffa4161c21a4140eaa9bed46f37 (patch)
treeeb4a228cca8d6330554336626931e3a996e25031 /src/gui_w32.c
parent6ed535dbc0981d328c02e139d6505207cbef4835 (diff)
downloadvim-git-8e5f5b47c2198ffa4161c21a4140eaa9bed46f37.tar.gz
patch 7.4.840v7.4.840
Problem: Tooltip window stays open. Solution: Send a WM_CLOSE message. (Jurgen Kramer)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r--src/gui_w32.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index 463351eea..20e94c369 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);
}