bug 702907 - Zooming should be disabled while a video is in fullscreen mode r=mbrubeck

--HG--
extra : rebase_source : 0ca9a36735abf2fcc7ad0b276e56c1f50b209488
This commit is contained in:
Brad Lassey 2012-03-08 10:53:01 -05:00
parent fd5892fe08
commit 74f1cbc5b2

View File

@ -770,6 +770,9 @@ public class PanZoomController
public boolean onScale(SimpleScaleGestureDetector detector) {
Log.d(LOGTAG, "onScale in state " + mState);
if (GeckoApp.mDOMFullScreen)
return false;
if (mState == PanZoomState.ANIMATED_ZOOM)
return false;