From bea5b4b9f7c9666952fda7e4d0e07d748f9fc7cf Mon Sep 17 00:00:00 2001 From: Oleg Krylov Date: Wed, 25 Oct 2006 13:29:19 +0300 Subject: [PATCH] comctl32: statusbar: Create tooltip window with WS_POPUP and TTS_ALWAYSTIP style. --- dlls/comctl32/status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/status.c b/dlls/comctl32/status.c index cd6e98ac521..85f7c6e4203 100644 --- a/dlls/comctl32/status.c +++ b/dlls/comctl32/status.c @@ -992,7 +992,7 @@ STATUSBAR_WMCreate (HWND hwnd, LPCREATESTRUCTA lpCreate) if (dwStyle & SBT_TOOLTIPS) { infoPtr->hwndToolTip = - CreateWindowExW (0, TOOLTIPS_CLASSW, NULL, 0, + CreateWindowExW (0, TOOLTIPS_CLASSW, NULL, WS_POPUP | TTS_ALWAYSTIP, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, hwnd, 0, (HINSTANCE)GetWindowLongPtrW(hwnd, GWLP_HINSTANCE), NULL); -- 2.11.4.GIT