mirror of
https://github.com/element-hq/element-web
synced 2024-11-29 04:48:50 +03:00
Merge pull request #3031 from spantaleev/fix-non-integer-thumb-sizes
Do not try to request thumbnails with non-integer widths
This commit is contained in:
commit
6174cd2998
1 changed files with 2 additions and 2 deletions
|
@ -172,8 +172,8 @@ export default class MImageBody extends React.Component {
|
||||||
// thumbnail resolution will be unnecessarily reduced.
|
// thumbnail resolution will be unnecessarily reduced.
|
||||||
// custom timeline widths seems preferable.
|
// custom timeline widths seems preferable.
|
||||||
const pixelRatio = window.devicePixelRatio;
|
const pixelRatio = window.devicePixelRatio;
|
||||||
const thumbWidth = 800 * pixelRatio;
|
const thumbWidth = Math.round(800 * pixelRatio);
|
||||||
const thumbHeight = 600 * pixelRatio;
|
const thumbHeight = Math.round(600 * pixelRatio);
|
||||||
|
|
||||||
const content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
if (content.file !== undefined) {
|
if (content.file !== undefined) {
|
||||||
|
|
Loading…
Reference in a new issue