diff --git a/Telegram/SourceFiles/window/themes/window_themes_cloud_list.cpp b/Telegram/SourceFiles/window/themes/window_themes_cloud_list.cpp index c63be6ba5..f827cab3f 100644 --- a/Telegram/SourceFiles/window/themes/window_themes_cloud_list.cpp +++ b/Telegram/SourceFiles/window/themes/window_themes_cloud_list.cpp @@ -312,6 +312,7 @@ object_ptr CloudList::takeWidget() { rpl::producer CloudList::empty() const { using namespace rpl::mappers; + return _count.value() | rpl::map(_1 == 0); } @@ -720,6 +721,7 @@ int CloudList::resizeGetHeight(int newWidth) { auto rowHeight = 0; for (const auto &element : _elements) { const auto button = element.button.get(); + button->resizeToWidth(single); button->moveToLeft(int(std::round(x)), y); accumulate_max(rowHeight, button->height()); x += single + skip;