Merge pull request #1800 from cyisfor/master

Increase maximum avatar size to 96 to avoid blurriness in chats
This commit is contained in:
csoler 2020-02-22 17:26:06 +01:00 committed by GitHub
commit 0f045b4f6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,8 +45,8 @@ AvatarDialog::AvatarDialog(QWidget *parent) :
updateInterface();
}
const int AvatarDialog::RS_AVATAR_DEFAULT_IMAGE_W = 64;
const int AvatarDialog::RS_AVATAR_DEFAULT_IMAGE_H = 64;
const int AvatarDialog::RS_AVATAR_DEFAULT_IMAGE_W = 96;
const int AvatarDialog::RS_AVATAR_DEFAULT_IMAGE_H = 96;
AvatarDialog::~AvatarDialog()
{