mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
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:
parent
fd5892fe08
commit
74f1cbc5b2
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user