2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 22:46:10 +00:00

Destroy boxes in Ui::hideLayer().

This commit is contained in:
John Preston
2018-11-26 15:00:31 +04:00
parent 151a64f817
commit 338129faea
15 changed files with 202 additions and 204 deletions

View File

@@ -1199,13 +1199,12 @@ void DialogsWidget::showSearchFrom() {
Dialogs::ShowSearchFromBox(
controller(),
peer,
crl::guard(this, [=](
not_null<UserData*> user) {
crl::guard(this, [=](not_null<UserData*> user) {
Ui::hideLayer();
setSearchInChat(chat, user);
onFilterUpdate(true);
}),
crl::guard(this, [this] { _filter->setFocus(); }));
crl::guard(this, [=] { _filter->setFocus(); }));
}
}