From fdd841e5c4308f845123c066d996fe62c9be51a3 Mon Sep 17 00:00:00 2001 From: Av Date: Tue, 3 Mar 2020 11:47:49 -0800 Subject: [PATCH] Increase media cache memory size to solve flicker issue When displaying large numbers of GIFs, Telegram's Media Cache runs out of size and unloads items that are still being displayed. --- Telegram/SourceFiles/data/data_document.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/data/data_document.cpp b/Telegram/SourceFiles/data/data_document.cpp index 56b6d5ff6..9603ba960 100644 --- a/Telegram/SourceFiles/data/data_document.cpp +++ b/Telegram/SourceFiles/data/data_document.cpp @@ -42,7 +42,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL namespace { -constexpr auto kMemoryForCache = 32 * 1024 * 1024; +// Updated Mar 3, 2020: Increase the size of the memory cache for media, to prevent items still being displayed from being unloaded. +constexpr auto kMemoryForCache = 128 * 1024 * 1024; // was 32, updated to 128 const auto kAnimatedStickerDimensions = QSize(512, 512); using FilePathResolve = DocumentData::FilePathResolve;