test returning true when finger is liftes in multitouch

This commit is contained in:
sonora 2016-12-27 16:00:49 +01:00
parent 20b906af07
commit e851a544b2

View file

@ -88,8 +88,9 @@ public class MultiTouchSupport {
if(pointCount < 2){
if(inZoomMode){
listener.onZoomOrRotationEnded(zoomRelative, angleRelative);
inZoomMode = false;
}
return false;
return true;
}
Float x1 = (Float) getX.invoke(event, 0);
Float x2 = (Float) getX.invoke(event, 1);