2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Show emoji status in chats list / top bar.

This commit is contained in:
John Preston
2022-08-09 18:53:40 +03:00
parent 285ce81b7b
commit 21fd381778
17 changed files with 386 additions and 177 deletions

View File

@@ -339,9 +339,13 @@ void Row::paintUserpic(
p.setOpacity(1.);
}
FakeRow::FakeRow(Key searchInChat, not_null<HistoryItem*> item)
FakeRow::FakeRow(
Key searchInChat,
not_null<HistoryItem*> item,
Fn<void()> repaint)
: _searchInChat(searchInChat)
, _item(item) {
, _item(item)
, _repaint(std::move(repaint)) {
}
const Ui::Text::String &FakeRow::name() const {