From 20efa47126341e625ef76aa97e8a731a2d866476 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 25 Aug 2017 16:50:36 +0300 Subject: [PATCH] Fix layout for the log entries of caption edits. --- Telegram/SourceFiles/history/history_media_types.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Telegram/SourceFiles/history/history_media_types.cpp b/Telegram/SourceFiles/history/history_media_types.cpp index 145a5ff29..b0ca60408 100644 --- a/Telegram/SourceFiles/history/history_media_types.cpp +++ b/Telegram/SourceFiles/history/history_media_types.cpp @@ -3319,6 +3319,13 @@ void HistoryWebPage::initDimensions() { } else if (_data->siteName == qstr("Instagram")) { opts = &_instagramDescriptionOptions; } + if (isLogEntryOriginal()) { + // Fix layout for small bubbles (narrow media caption edit log entries). + _description = Text(st::minPhotoSize + - st::msgPadding.left() + - st::msgPadding.right() + - st::webPageLeft); + } _description.setMarkedText(st::webPageDescriptionStyle, text, *opts); } if (_title.isEmpty() && !title.isEmpty()) {