From 1598d12438a7f05347791a43eecbd9ede6d92db7 Mon Sep 17 00:00:00 2001 From: C-o-r-E Date: Fri, 26 Apr 2013 17:52:50 -0400 Subject: [PATCH] xfreerdp-client: fix inequality --- client/X11/xf_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/X11/xf_input.c b/client/X11/xf_input.c index c027c7f59..fb40abe04 100644 --- a/client/X11/xf_input.c +++ b/client/X11/xf_input.c @@ -85,7 +85,7 @@ void xf_input_detect_pinch() //if this is the first 2pt touch - if(firstDist > 0) + if(firstDist <= 0) { firstDist = dist; }