test-revert some otimizations
This commit is contained in:
parent
a0af664e86
commit
fbdfc46df0
1 changed files with 8 additions and 8 deletions
|
@ -111,13 +111,13 @@ public class MultiTouchSupport {
|
|||
angleStarted = angle;
|
||||
inZoomMode = true;
|
||||
return true;
|
||||
// End only on second-last pointer up, see above
|
||||
//} else if(actionCode == ACTION_POINTER_UP){
|
||||
// if(inZoomMode){
|
||||
// listener.onZoomOrRotationEnded(zoomRelative, angleRelative);
|
||||
// inZoomMode = false;
|
||||
// }
|
||||
// return true;
|
||||
// End only on second-last pointer up, see above?
|
||||
} else if(actionCode == ACTION_POINTER_UP){
|
||||
if(inZoomMode){
|
||||
listener.onZoomOrRotationEnded(zoomRelative, angleRelative);
|
||||
inZoomMode = false;
|
||||
}
|
||||
return true;
|
||||
} else if(inZoomMode && actionCode == MotionEvent.ACTION_MOVE){
|
||||
// Keep zoom center fixed or flexible
|
||||
centerPoint = new PointF((x1 + x2) / 2, (y1 + y2) / 2);
|
||||
|
@ -132,7 +132,7 @@ public class MultiTouchSupport {
|
|||
} catch (Exception e) {
|
||||
log.debug("Multi touch exception" , e); //$NON-NLS-1$
|
||||
}
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
public PointF getCenterPoint() {
|
||||
|
|
Loading…
Reference in a new issue