Fix vertical scrolling in videoview
Fixes https://github.com/vector-im/element-web/issues/15886
This commit is contained in:
parent
5282c6bbe8
commit
80be46bc32
1 changed files with 11 additions and 2 deletions
|
@ -94,6 +94,8 @@ const CONTROLS_HIDE_DELAY = 1000;
|
||||||
// Height of the header duplicated from CSS because we need to subtract it from our max
|
// Height of the header duplicated from CSS because we need to subtract it from our max
|
||||||
// height to get the max height of the video
|
// height to get the max height of the video
|
||||||
const HEADER_HEIGHT = 44;
|
const HEADER_HEIGHT = 44;
|
||||||
|
const BOTTOM_PADDING = 10;
|
||||||
|
const BOTTOM_MARGIN_TOP_BOTTOM = 10; // top margin plus bottom margin
|
||||||
const CONTEXT_MENU_VPADDING = 8; // How far the context menu sits above the button (px)
|
const CONTEXT_MENU_VPADDING = 8; // How far the context menu sits above the button (px)
|
||||||
|
|
||||||
export default class CallView extends React.Component<IProps, IState> {
|
export default class CallView extends React.Component<IProps, IState> {
|
||||||
|
@ -453,8 +455,15 @@ export default class CallView extends React.Component<IProps, IState> {
|
||||||
}
|
}
|
||||||
|
|
||||||
// if we're fullscreen, we don't want to set a maxHeight on the video element.
|
// if we're fullscreen, we don't want to set a maxHeight on the video element.
|
||||||
const maxVideoHeight = getFullScreenElement() ? null : this.props.maxVideoHeight - HEADER_HEIGHT;
|
const maxVideoHeight = getFullScreenElement() ? null : (
|
||||||
contentView = <div className={containerClasses} ref={this.contentRef} onMouseMove={this.onMouseMove}>
|
this.props.maxVideoHeight - (HEADER_HEIGHT + BOTTOM_PADDING + BOTTOM_MARGIN_TOP_BOTTOM)
|
||||||
|
);
|
||||||
|
contentView = <div className={containerClasses}
|
||||||
|
ref={this.contentRef} onMouseMove={this.onMouseMove}
|
||||||
|
// Put the max height on here too because this div is ended up 4px larger than the content
|
||||||
|
// and is causing it to scroll, and I am genuinely baffled as to why.
|
||||||
|
style={{maxHeight: maxVideoHeight}}
|
||||||
|
>
|
||||||
{onHoldBackground}
|
{onHoldBackground}
|
||||||
<VideoFeed type={VideoFeedType.Remote} call={this.props.call} onResize={this.props.onResize}
|
<VideoFeed type={VideoFeedType.Remote} call={this.props.call} onResize={this.props.onResize}
|
||||||
maxHeight={maxVideoHeight}
|
maxHeight={maxVideoHeight}
|
||||||
|
|
Loading…
Reference in a new issue