Browse Source

fix(Filmstrip) fix not being able to scroll

master
Hristo Terezov 3 years ago
parent
commit
32ed2bccec
No account linked to committer's email address
1 changed files with 0 additions and 6 deletions
  1. 0
    6
      react/features/filmstrip/components/web/Filmstrip.js

+ 0
- 6
react/features/filmstrip/components/web/Filmstrip.js View File

@@ -34,11 +34,6 @@ import ThumbnailWrapper from './ThumbnailWrapper';
34 34
 declare var APP: Object;
35 35
 declare var interfaceConfig: Object;
36 36
 
37
-/**
38
- * Fixes case in which context menu overflows and creates a scroll on the whole filmstrip videos pane.
39
- */
40
-const TILEVIEW_VIDEO_PANES_STYLE = { overflow: 'visible' };
41
-
42 37
 /**
43 38
  * The type of the React {@code Component} props of {@link Filmstrip}.
44 39
  */
@@ -391,7 +386,6 @@ class Filmstrip extends PureComponent <Props> {
391 386
                     overscanRowCount = { 1 }
392 387
                     rowCount = { _rows }
393 388
                     rowHeight = { _thumbnailHeight + TILE_VERTICAL_MARGIN }
394
-                    style = { TILEVIEW_VIDEO_PANES_STYLE }
395 389
                     width = { _filmstripWidth }>
396 390
                     {
397 391
                         ThumbnailWrapper

Loading…
Cancel
Save