No shared media empty placeholders while loading.

This commit is contained in:
John Preston 2017-11-17 20:20:31 +04:00
parent 4aae4f9399
commit 33ae4b176a
3 changed files with 14 additions and 7 deletions

View File

@ -92,7 +92,7 @@ std::unique_ptr<PeerListRow> ListController::createRow(
} }
void ListController::prepare() { void ListController::prepare() {
setSearchNoResultsText(lang(lng_blocked_list_not_found)); setSearchNoResultsText(lang(lng_bot_groups_not_found));
delegate()->peerListSetSearchMode(PeerListSearchMode::Enabled); delegate()->peerListSetSearchMode(PeerListSearchMode::Enabled);
delegate()->peerListSetTitle(langFactory(lng_profile_common_groups_section)); delegate()->peerListSetTitle(langFactory(lng_profile_common_groups_section));
} }

View File

@ -866,10 +866,12 @@ void WrapWidget::resizeEvent(QResizeEvent *e) {
void WrapWidget::keyPressEvent(QKeyEvent *e) { void WrapWidget::keyPressEvent(QKeyEvent *e) {
if (e->key() == Qt::Key_Escape) { if (e->key() == Qt::Key_Escape) {
showBackFromStack(); if (hasStackHistory() || wrap() != Wrap::Layer) {
} else { showBackFromStack();
SectionWidget::keyPressEvent(e); return;
}
} }
SectionWidget::keyPressEvent(e);
} }
void WrapWidget::updateContentGeometry() { void WrapWidget::updateContentGeometry() {

View File

@ -2007,15 +2007,20 @@ void ListWidget::refreshHeight() {
} }
int ListWidget::recountHeight() { int ListWidget::recountHeight() {
if (_sections.empty()) {
if (auto count = _slice.fullCount()) {
if (*count == 0) {
return 0;
}
}
}
auto cachedPadding = padding(); auto cachedPadding = padding();
auto result = cachedPadding.top(); auto result = cachedPadding.top();
for (auto &section : _sections) { for (auto &section : _sections) {
section.setTop(result); section.setTop(result);
result += section.height(); result += section.height();
} }
return (result > cachedPadding.top()) return result + cachedPadding.bottom();
? (result + cachedPadding.bottom())
: 0;
} }
void ListWidget::mouseActionUpdate() { void ListWidget::mouseActionUpdate() {