mirror of https://github.com/procxx/kepka.git
parent
3da99b6058
commit
9feea4a724
|
@ -39,7 +39,7 @@ namespace HistoryView {
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
constexpr auto kMaxGifForwardedBarLines = 4;
|
constexpr auto kMaxGifForwardedBarLines = 4;
|
||||||
constexpr auto kUseNonBlurredThreshold = 160;
|
constexpr auto kUseNonBlurredThreshold = 240;
|
||||||
|
|
||||||
int gifMaxStatusWidth(DocumentData *document) {
|
int gifMaxStatusWidth(DocumentData *document) {
|
||||||
auto result = st::normalFont->width(formatDownloadText(document->size, document->size));
|
auto result = st::normalFont->width(formatDownloadText(document->size, document->size));
|
||||||
|
@ -406,7 +406,7 @@ void Gif::draw(Painter &p, const QRect &r, TextSelection selection, crl::time ms
|
||||||
const auto normal = _data->thumbnail();
|
const auto normal = _data->thumbnail();
|
||||||
if (normal && normal->loaded()) {
|
if (normal && normal->loaded()) {
|
||||||
if (normal->width() >= kUseNonBlurredThreshold
|
if (normal->width() >= kUseNonBlurredThreshold
|
||||||
&& normal->height() >= kUseNonBlurredThreshold) {
|
|| normal->height() >= kUseNonBlurredThreshold) {
|
||||||
p.drawPixmap(rthumb.topLeft(), normal->pixSingle(_realParent->fullId(), _thumbw, _thumbh, usew, painth, roundRadius, roundCorners));
|
p.drawPixmap(rthumb.topLeft(), normal->pixSingle(_realParent->fullId(), _thumbw, _thumbh, usew, painth, roundRadius, roundCorners));
|
||||||
} else {
|
} else {
|
||||||
p.drawPixmap(rthumb.topLeft(), normal->pixBlurredSingle(_realParent->fullId(), _thumbw, _thumbh, usew, painth, roundRadius, roundCorners));
|
p.drawPixmap(rthumb.topLeft(), normal->pixBlurredSingle(_realParent->fullId(), _thumbw, _thumbh, usew, painth, roundRadius, roundCorners));
|
||||||
|
@ -1116,8 +1116,8 @@ void Gif::validateGroupedCache(
|
||||||
: _data->thumbnailInline();
|
: _data->thumbnailInline();
|
||||||
const auto blur = !useGood
|
const auto blur = !useGood
|
||||||
&& (!useThumb
|
&& (!useThumb
|
||||||
|| (thumb->width() < kUseNonBlurredThreshold)
|
|| (thumb->width() < kUseNonBlurredThreshold
|
||||||
|| (thumb->height() < kUseNonBlurredThreshold));
|
&& thumb->height() < kUseNonBlurredThreshold));
|
||||||
if (good && !useGood) {
|
if (good && !useGood) {
|
||||||
good->load({});
|
good->load({});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue