Bug 708928 - Don't render when a finger is down. r=Cwiiis

This commit is contained in:
Patrick Walton 2011-12-09 12:06:10 -08:00
parent 043e3dd5e4
commit f46acf9043

View File

@ -934,7 +934,7 @@ public class PanZoomController
}
public boolean getRedrawHint() {
return (mState != PanZoomState.PINCHING);
return (mState == PanZoomState.NOTHING || mState == PanZoomState.FLING);
}
@Override