test returning true when finger is liftes in multitouch
This commit is contained in:
parent
20b906af07
commit
e851a544b2
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue