소스 검색

rn: disable touch feedback on Thumbnail

Touch feedback manifests in some ugly black border bleeding out of the thumbnail
itself. Since we already provide feedback (be that by adding the blue border in
case of pinning, or showing the menu in case of long press) the perception is
the same, without the graphical glitch.
master
Saúl Ibarra Corretgé 6 년 전
부모
커밋
937c74f49e
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      react/features/filmstrip/components/native/Thumbnail.js

+ 2
- 1
react/features/filmstrip/components/native/Thumbnail.js 파일 보기

@@ -137,7 +137,8 @@ class Thumbnail extends Component<Props> {
137 137
                     participant.pinned && !disablePin
138 138
                         ? styles.thumbnailPinned : null,
139 139
                     this.props.styleOverrides || null
140
-                ] }>
140
+                ] }
141
+                touchFeedback = { false }>
141 142
 
142 143
                 { renderAudio
143 144
                     && <Audio

Loading…
취소
저장