*Avatar: Calculate thumbnail dimensions based on devicePixelRatio
Multiply the dimension by the device pixel ratio and then round it to get the width/height of the thumbnail to use in the request.
This commit is contained in:
parent
3d507e9840
commit
39de37b547
2 changed files with 12 additions and 12 deletions
|
@ -22,8 +22,8 @@ module.exports = {
|
|||
avatarUrlForMember: function(member, width, height, resizeMethod) {
|
||||
var url = member.getAvatarUrl(
|
||||
MatrixClientPeg.get().getHomeserverUrl(),
|
||||
window.devicePixelRatio > 1.2 ? 96 : width,
|
||||
window.devicePixelRatio > 1.2 ? 96 : height,
|
||||
Math.floor(width * window.devicePixelRatio),
|
||||
Math.floor(height * window.devicePixelRatio),
|
||||
resizeMethod,
|
||||
false,
|
||||
false
|
||||
|
@ -40,8 +40,8 @@ module.exports = {
|
|||
avatarUrlForUser: function(user, width, height, resizeMethod) {
|
||||
var url = ContentRepo.getHttpUriForMxc(
|
||||
MatrixClientPeg.get().getHomeserverUrl(), user.avatarUrl,
|
||||
window.devicePixelRatio > 1.2 ? 96 : width,
|
||||
window.devicePixelRatio > 1.2 ? 96 : height,
|
||||
Math.floor(width * window.devicePixelRatio),
|
||||
Math.floor(height * window.devicePixelRatio),
|
||||
resizeMethod
|
||||
);
|
||||
if (!url || url.length === 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue