Browse Source

auto commit

app
jfinn 3 years ago
parent
commit
242bb90c17
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      react/features/base/media/components/native/Video.js

+ 3
- 2
react/features/base/media/components/native/Video.js View File

97
             if (video_info && video_info.of1){
97
             if (video_info && video_info.of1){
98
                 objectFit = video_info.objectFit
98
                 objectFit = video_info.objectFit
99
             }
99
             }
100
+            var zoomEnabled2 = true
100
 
101
 
101
             const rtcView
102
             const rtcView
102
                 = (
103
                 = (
110
 
111
 
111
             // VideoTransform implements "pinch to zoom". As part of "pinch to
112
             // VideoTransform implements "pinch to zoom". As part of "pinch to
112
             // zoom", it implements onPress, of course.
113
             // zoom", it implements onPress, of course.
113
-            if (zoomEnabled) {
114
+            if (zoomEnabled2) {
114
                 return (
115
                 return (
115
                     <VideoTransform
116
                     <VideoTransform
116
-                        enabled = { zoomEnabled }
117
+                        enabled = { zoomEnabled2 }
117
                         onPress = { onPress }
118
                         onPress = { onPress }
118
                         streamId = { stream.id }
119
                         streamId = { stream.id }
119
                         style = { {...style,...avt_style} }>
120
                         style = { {...style,...avt_style} }>

Loading…
Cancel
Save