Fix empty emoticons panel in unicode input kitten

Fixes #6760
This commit is contained in:
Kovid Goyal
2023-10-27 14:18:46 +05:30
parent 7cb392c7ab
commit acf586867c
2 changed files with 3 additions and 1 deletions

View File

@@ -50,7 +50,7 @@ func build_sets() {
}
EMOTICONS_SET = make([]rune, 0, 0x1f64f-0x1f600+1)
for i := 0x1f600; i <= 0x1f64f; i++ {
DEFAULT_SET = append(DEFAULT_SET, rune(i))
EMOTICONS_SET = append(EMOTICONS_SET, rune(i))
}
}