Commit e2099dc9 authored by Chris Morgan's avatar Chris Morgan Committed by Alexandre Julliard

Fixed tooltips.

parent 7030c5f7
......@@ -2234,7 +2234,7 @@ static LRESULT CALLBACK
TOOLTIPS_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
TRACE("hwnd=%x msg=%x wparam=%x lParam=%lx\n", hwnd, uMsg, wParam, lParam);
if (!(TOOLTIPS_GetInfoPtr(hwnd) && (uMsg != WM_CREATE)))
if (!TOOLTIPS_GetInfoPtr(hwnd) && (uMsg != WM_CREATE) && (uMsg != WM_NCCREATE))
return DefWindowProcA (hwnd, uMsg, wParam, lParam);
switch (uMsg)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment