From 022fb0c81b86387d7543d06bb534e3cad6402ebc Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 24 Jun 2019 14:32:43 +0200 Subject: [PATCH] Version 1.7.10: Fix sticker set title. Fixes #6169. --- Telegram/SourceFiles/boxes/abstract_box.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Telegram/SourceFiles/boxes/abstract_box.cpp b/Telegram/SourceFiles/boxes/abstract_box.cpp index 72ad0e2814..98b5b69d39 100644 --- a/Telegram/SourceFiles/boxes/abstract_box.cpp +++ b/Telegram/SourceFiles/boxes/abstract_box.cpp @@ -328,6 +328,7 @@ void AbstractBox::setTitle(rpl::producer title) { const auto wasTitle = hasTitle(); if (title) { _title.create(this, std::move(title), st::boxTitle); + _title->show(); updateTitlePosition(); } else { _title.destroy();