From 95d8742e3cf435344625cfb3608ed7f86ccbab22 Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 27 Dec 2017 13:08:18 +0300 Subject: [PATCH] Fix round corners on Retina displays. --- Telegram/SourceFiles/boxes/send_files_box.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/boxes/send_files_box.cpp b/Telegram/SourceFiles/boxes/send_files_box.cpp index 7608387f1..6d212ea6e 100644 --- a/Telegram/SourceFiles/boxes/send_files_box.cpp +++ b/Telegram/SourceFiles/boxes/send_files_box.cpp @@ -328,7 +328,6 @@ void AlbumThumb::prepareCache(QSize size, int shrink) { _layout.geometry.height(), _fromGeometry.height()); const auto cacheSize = QSize(width, height) * cIntRetinaFactor(); - const auto initial = QRect(QPoint(), size); if (_albumCache.width() < cacheSize.width() || _albumCache.height() < cacheSize.height()) { @@ -337,7 +336,7 @@ void AlbumThumb::prepareCache(QSize size, int shrink) { _albumCache.fill(Qt::transparent); { Painter p(&_albumCache); - const auto to = initial.marginsRemoved( + const auto to = QRect(QPoint(), size).marginsRemoved( { shrink, shrink, shrink, shrink } ); drawSimpleFrame(p, to, size); @@ -346,7 +345,7 @@ void AlbumThumb::prepareCache(QSize size, int shrink) { _albumCache, ImageRoundRadius::Large, _albumCorners, - initial); + QRect(QPoint(), size * cIntRetinaFactor())); } void AlbumThumb::drawSimpleFrame(Painter &p, QRect to, QSize size) const {