mirror of https://github.com/procxx/kepka.git
Don't show digits in first word emoji suggestions.
This commit is contained in:
parent
5f8ede194b
commit
74e120bc7b
|
@ -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] != '$')
|
||||
|
|
Loading…
Reference in New Issue