From 987fa198c812c1536fd1f151daccd6178a8b7921 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 9 Oct 2018 13:33:05 +0300 Subject: [PATCH] Use original emoji for the autocomplete tooltip. Fixes #5235. --- Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp b/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp index 1475bfda9..494408858 100644 --- a/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp +++ b/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp @@ -675,17 +675,17 @@ QString EmojiListWidget::tooltipText() const { const auto section = (_selected / MatrixRowShift); const auto sel = _selected % MatrixRowShift; if (_selected >= 0 && section < kEmojiSectionCount && sel < _emoji[section].size()) { - const auto emoji = _emoji[section][sel]; + const auto emoji = _emoji[section][sel]->original(); const auto text = emoji->text(); // find the replacement belonging to the emoji - const auto it = ranges::find_if(replacements, [&text](auto &one) { + const auto it = ranges::find_if(replacements, [&](const auto &one) { return text == Ui::Emoji::QStringFromUTF16(one.emoji); }); if (it != replacements.end()) { return Ui::Emoji::QStringFromUTF16(it->replacement); } } - return ""; + return {}; } QPoint EmojiListWidget::tooltipPos() const {