fixed typo in PhTnpDragSelect

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4417 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
wj32
2011-08-12 11:07:53 +00:00
parent dd24fc85f3
commit c0fb5dd4b0
+1 -1
View File
@@ -5911,7 +5911,7 @@ VOID PhTnpDragSelect(
aboveOrBelow = cursorPoint.y < windowRect.top || cursorPoint.y >= windowRect.bottom;
if ((Context->VScrollVisible && aboveOrBelow && PhTnpCanScroll(Context, FALSE, cursorPoint.y >= windowRect.bottom)) ||
(Context->HScrollVisible && leftOrRight && PhTnpCanScroll(Context, FALSE, cursorPoint.x >= windowRect.right)))
(Context->HScrollVisible && leftOrRight && PhTnpCanScroll(Context, TRUE, cursorPoint.x >= windowRect.right)))
{
SetCursorPos(cursorPoint.x, cursorPoint.y);
}