Commit bfe15b12 authored by Serge Ivanov's avatar Serge Ivanov Committed by Alexandre Julliard

MSDN: "WM_NCHITTEST - Returns HTCLIENT if the control style is

SS_NOTIFY; otherwise, returns HTTRANSPARENT. "
parent 0a094824
......@@ -299,7 +299,10 @@ LRESULT WINAPI StaticWndProc( HWND hWnd, UINT uMsg, WPARAM wParam,
goto END;
case WM_NCHITTEST:
lResult = HTTRANSPARENT;
if (wndPtr->dwStyle & SS_NOTIFY)
lResult = HTCLIENT;
else
lResult = HTTRANSPARENT;
goto END;
case WM_GETDLGCODE:
......
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