From 883d6dcede0e37618c8be338629026037eb15a7c Mon Sep 17 00:00:00 2001 From: RadRussianRus Date: Mon, 7 Oct 2019 18:55:39 +0300 Subject: [PATCH] Fixed inline message restriction width --- Telegram/SourceFiles/inline_bots/inline_results_widget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Telegram/SourceFiles/inline_bots/inline_results_widget.cpp b/Telegram/SourceFiles/inline_bots/inline_results_widget.cpp index 0c0e0d143..87d9e7da6 100644 --- a/Telegram/SourceFiles/inline_bots/inline_results_widget.cpp +++ b/Telegram/SourceFiles/inline_bots/inline_results_widget.cpp @@ -97,6 +97,7 @@ void Inner::checkRestrictedPeer() { _restrictedLabel.create(this, *error, st::stickersRestrictedLabel); _restrictedLabel->show(); _restrictedLabel->move(st::inlineResultsLeft - st::buttonRadius, st::stickerPanPadding); + _restrictedLabel->resizeToNaturalWidth(width() - (st::inlineResultsLeft - st::buttonRadius) * 2); if (_switchPmButton) { _switchPmButton->hide(); }