Commit b423532f authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

user32: In WINPOS_SysCommandSizeMove(), fix constraining a point to a rect's…

user32: In WINPOS_SysCommandSizeMove(), fix constraining a point to a rect's right and bottom edges.
parent 2692b9d2
...@@ -2747,9 +2747,9 @@ void WINPOS_SysCommandSizeMove( HWND hwnd, WPARAM wParam ) ...@@ -2747,9 +2747,9 @@ void WINPOS_SysCommandSizeMove( HWND hwnd, WPARAM wParam )
} }
pt.x = max( pt.x, mouseRect.left ); pt.x = max( pt.x, mouseRect.left );
pt.x = min( pt.x, mouseRect.right ); pt.x = min( pt.x, mouseRect.right - 1 );
pt.y = max( pt.y, mouseRect.top ); pt.y = max( pt.y, mouseRect.top );
pt.y = min( pt.y, mouseRect.bottom ); pt.y = min( pt.y, mouseRect.bottom - 1 );
if (!parent) if (!parent)
{ {
...@@ -2763,9 +2763,9 @@ void WINPOS_SysCommandSizeMove( HWND hwnd, WPARAM wParam ) ...@@ -2763,9 +2763,9 @@ void WINPOS_SysCommandSizeMove( HWND hwnd, WPARAM wParam )
if (mon && GetMonitorInfoW( mon, &info )) if (mon && GetMonitorInfoW( mon, &info ))
{ {
pt.x = max( pt.x, info.rcWork.left ); pt.x = max( pt.x, info.rcWork.left );
pt.x = min( pt.x, info.rcWork.right ); pt.x = min( pt.x, info.rcWork.right - 1 );
pt.y = max( pt.y, info.rcWork.top ); pt.y = max( pt.y, info.rcWork.top );
pt.y = min( pt.y, info.rcWork.bottom ); pt.y = min( pt.y, info.rcWork.bottom - 1 );
} }
} }
......
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