From c0fb5dd4b070b6c08bdb382beacfa5259d7ffeb8 Mon Sep 17 00:00:00 2001 From: wj32 Date: Fri, 12 Aug 2011 11:07:53 +0000 Subject: [PATCH] fixed typo in PhTnpDragSelect git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4417 21ef857c-d57f-4fe0-8362-d861dc6d29cd --- 2.x/trunk/phlib/treenew.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.x/trunk/phlib/treenew.c b/2.x/trunk/phlib/treenew.c index f901da081..2a3fa13ff 100644 --- a/2.x/trunk/phlib/treenew.c +++ b/2.x/trunk/phlib/treenew.c @@ -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); }