diff --git a/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp b/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp index 823168554..cb3b034ce 100644 --- a/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp +++ b/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp @@ -1097,6 +1097,11 @@ void EmojiListWidget::fillRecentMenu( crl::guard(this, [=] { displaySet(setId); }), &st::menuIconShowAll); } + } else if (emoji) { + addAction(tr::lng_emoji_copy(tr::now), [=] { + const auto text = emoji->text(); + TextUtilities::SetClipboardText({ text, { text } }); + }, &st::menuIconCopy); } auto id = RecentEmojiId{ emoji }; if (custom) {