From 2597bc9f4e024f5472d84bac96aa52d504704797 Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 21 Nov 2019 18:28:49 +0300 Subject: [PATCH] Fix layout of polls with huge questions. --- Telegram/SourceFiles/history/view/media/history_view_poll.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/history/view/media/history_view_poll.cpp b/Telegram/SourceFiles/history/view/media/history_view_poll.cpp index d095ad661..afabb10c7 100644 --- a/Telegram/SourceFiles/history/view/media/history_view_poll.cpp +++ b/Telegram/SourceFiles/history/view/media/history_view_poll.cpp @@ -302,10 +302,12 @@ void Poll::updateTexts() { const auto willStartAnimation = checkAnimationStart(); if (_question.toString() != _poll->question) { + auto options = Ui::WebpageTextTitleOptions(); + options.maxw = options.maxh = 0; _question.setText( st::historyPollQuestionStyle, _poll->question, - Ui::WebpageTextTitleOptions()); + options); } if (_closed != _poll->closed || _subtitle.isEmpty()) { _closed = _poll->closed;