Browse Source

remove limit double tap video

Signed-off-by: marinofaggiana <marino@marinofaggiana.com>
marinofaggiana 3 years ago
parent
commit
996a5228a1
1 changed files with 2 additions and 5 deletions
  1. 2 5
      iOSClient/Viewer/NCViewerMedia/NCViewerMediaZoom.swift

+ 2 - 5
iOSClient/Viewer/NCViewerMedia/NCViewerMediaZoom.swift

@@ -215,11 +215,8 @@ class NCViewerMediaZoom: UIViewController {
     @objc func didDoubleTapWith(gestureRecognizer: UITapGestureRecognizer) {
         
         if detailView.isShow() { return }
-        
-        // NO ZOOM for Audio / Video
-        if (metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue) && playerToolBar.isShow() {
-            return
-        }
+        // NO ZOOM for Audio
+        if metadata.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue { return }
         
         let pointInView = gestureRecognizer.location(in: self.imageVideoContainer)
         var newZoomScale = self.scrollView.maximumZoomScale