Fix Ctrl+Insert in hashtag search results.

This commit is contained in:
John Preston 2018-12-29 17:20:35 +04:00
parent 496d711684
commit a11ca58f36
1 changed files with 4 additions and 6 deletions

View File

@ -2319,12 +2319,10 @@ void DialogsInner::scrollToEntry(const Dialogs::RowDescriptor &entry) {
fromY = dialogsOffset() + row->pos() * st::dialogsRowHeight; fromY = dialogsOffset() + row->pos() * st::dialogsRowHeight;
} }
} else if (_state == State::Filtered) { } else if (_state == State::Filtered) {
if (entry.fullId.msg) { for (int32 i = 0, c = _searchResults.size(); i < c; ++i) {
for (int32 i = 0, c = _searchResults.size(); i < c; ++i) { if (isSearchResultActive(_searchResults[i].get(), entry)) {
if (_searchResults[i]->item()->fullId() == entry.fullId) { fromY = searchedOffset() + i * st::dialogsRowHeight;
fromY = searchedOffset() + i * st::dialogsRowHeight; break;
break;
}
} }
} }
if (fromY < 0) { if (fromY < 0) {