Skip to content

Commit

Permalink
Merge pull request #10099 from KDSBrowne/screenshare-crop-fix
Browse files Browse the repository at this point in the history
Prevent screen share cropping on chrome 84
  • Loading branch information
ffdixon committed Jul 21, 2020
2 parents 8ba5ef4 + f45af62 commit eb1624a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ class ScreenshareComponent extends React.Component {
<video
id="screenshareVideo"
key="screenshareVideo"
style={{ maxHeight: '100%', width: '100%' }}
style={{ maxHeight: '100%', width: '100%', height: '100%' }}
playsInline
onLoadedData={this.onVideoLoad}
ref={(ref) => { this.videoTag = ref; }}
Expand Down

0 comments on commit eb1624a

Please sign in to comment.