fix(Filmstrip) fix not being able to scroll
This commit is contained in:
parent
58d98ad7d3
commit
32ed2bccec
|
@ -34,11 +34,6 @@ import ThumbnailWrapper from './ThumbnailWrapper';
|
||||||
declare var APP: Object;
|
declare var APP: Object;
|
||||||
declare var interfaceConfig: Object;
|
declare var interfaceConfig: Object;
|
||||||
|
|
||||||
/**
|
|
||||||
* Fixes case in which context menu overflows and creates a scroll on the whole filmstrip videos pane.
|
|
||||||
*/
|
|
||||||
const TILEVIEW_VIDEO_PANES_STYLE = { overflow: 'visible' };
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The type of the React {@code Component} props of {@link Filmstrip}.
|
* The type of the React {@code Component} props of {@link Filmstrip}.
|
||||||
*/
|
*/
|
||||||
|
@ -391,7 +386,6 @@ class Filmstrip extends PureComponent <Props> {
|
||||||
overscanRowCount = { 1 }
|
overscanRowCount = { 1 }
|
||||||
rowCount = { _rows }
|
rowCount = { _rows }
|
||||||
rowHeight = { _thumbnailHeight + TILE_VERTICAL_MARGIN }
|
rowHeight = { _thumbnailHeight + TILE_VERTICAL_MARGIN }
|
||||||
style = { TILEVIEW_VIDEO_PANES_STYLE }
|
|
||||||
width = { _filmstripWidth }>
|
width = { _filmstripWidth }>
|
||||||
{
|
{
|
||||||
ThumbnailWrapper
|
ThumbnailWrapper
|
||||||
|
|
Loading…
Reference in New Issue