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(
|
[[nodiscard]] bool SkipExactKeyword(
|
||||||
const QString &language,
|
const QString &language,
|
||||||
const QString &word) {
|
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;
|
return false;
|
||||||
} else if ((word.size() == 1)
|
} else if ((word.size() == 1)
|
||||||
&& (word[0] != '$')
|
&& (word[0] != '$')
|
||||||
|
|
Loading…
Reference in New Issue