Use original emoji for the autocomplete tooltip.

Fixes #5235.
This commit is contained in:
John Preston 2018-10-09 13:33:05 +03:00
parent 2444acb041
commit 987fa198c8
1 changed files with 3 additions and 3 deletions

View File

@ -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 {