mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 12:32:47 +00:00
- Minor correction to hit testing algorithm
svn path=/trunk/; revision=8091
This commit is contained in:
parent
50b64b7cd1
commit
a99ec32abd
1 changed files with 2 additions and 2 deletions
|
@ -667,7 +667,7 @@ DefWndNCHitTest(HWND hWnd, POINT Point)
|
||||||
return HTBORDER;
|
return HTBORDER;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Style & WS_CAPTION)
|
if ((Style & WS_CAPTION) == WS_CAPTION)
|
||||||
{
|
{
|
||||||
if (ExStyle & WS_EX_TOOLWINDOW)
|
if (ExStyle & WS_EX_TOOLWINDOW)
|
||||||
WindowRect.top += GetSystemMetrics(SM_CYSMCAPTION);
|
WindowRect.top += GetSystemMetrics(SM_CYSMCAPTION);
|
||||||
|
|
Loading…
Reference in a new issue