From 2d9ccbc4281249ed01644e69a420d35debf919d4 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 9 Oct 2016 01:06:21 +0300 Subject: [PATCH] Fixed PhotoCropBox for Retina displays. --- Telegram/SourceFiles/boxes/photocropbox.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/boxes/photocropbox.cpp b/Telegram/SourceFiles/boxes/photocropbox.cpp index 5d9c09a4c..1e0e0de3e 100644 --- a/Telegram/SourceFiles/boxes/photocropbox.cpp +++ b/Telegram/SourceFiles/boxes/photocropbox.cpp @@ -61,9 +61,10 @@ void PhotoCropBox::init(const QImage &img, PeerData *peer) { } int32 s = st::boxWideWidth - st::boxPhotoPadding.left() - st::boxPhotoPadding.right(); - _thumb = App::pixmapFromImageInPlace(img.scaled(s, s, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - _thumbw = _thumb.width(); - _thumbh = _thumb.height(); + _thumb = App::pixmapFromImageInPlace(img.scaled(s * cIntRetinaFactor(), s * cIntRetinaFactor(), Qt::KeepAspectRatio, Qt::SmoothTransformation)); + _thumb.setDevicePixelRatio(cRetinaFactor()); + _thumbw = _thumb.width() / cIntRetinaFactor(); + _thumbh = _thumb.height() / cIntRetinaFactor(); if (_thumbw > _thumbh) { _cropw = _thumbh - 20; } else {