Signed-off-by: Waritnan Sookbuntherng lion328@hotmail.co.th --- dlls/comctl32/status.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/dlls/comctl32/status.c b/dlls/comctl32/status.c index 3bf72fa577..ad69c54ba8 100644 --- a/dlls/comctl32/status.c +++ b/dlls/comctl32/status.c @@ -1011,6 +1011,9 @@ STATUSBAR_WMNCHitTest (const STATUS_INFO *infoPtr, INT x, INT y)
rect.left = rect.right - 13; rect.top += 2; + /* checking POINT in RECT inclusively */ + rect.right += 1; + rect.bottom += 1;
if (PtInRect (&rect, pt)) {