Don't show digits in first word emoji suggestions.

This commit is contained in:
John Preston 2019-04-03 12:47:38 +04:00
parent 5f8ede194b
commit 74e120bc7b
1 changed files with 6 additions and 1 deletions

View File

@ -49,7 +49,12 @@ struct LangPackData {
[[nodiscard]] bool SkipExactKeyword(
const QString &language,
const QString &word) {
if (language != qstr("en")) {
if ((word.size() == 1)
&& (word[0] >= '0' && word[0] <= '9')) {
return true;
} else if (word == qstr("10")) {
return true;
} else if (language != qstr("en")) {
return false;
} else if ((word.size() == 1)
&& (word[0] != '$')