Skip to content

Commit

Permalink
Fix empty emoticons panel in unicode input kitten
Browse files Browse the repository at this point in the history
Fixes #6760
  • Loading branch information
kovidgoyal committed Oct 27, 2023
1 parent 7cb392c commit acf5868
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ Detailed list of changes

- :doc:`Desktop notification protocol </desktop-notifications>`: Allow applications sending notifications to specify that the notification should only be displayed if the window is currently unfocused (:iss:`6755`)

- :doc:`unicode_input kitten </kittens/unicode_input>`: Fix a regression that broke the "Emoticons" panel (:iss:`6760`)


0.30.1 [2023-10-05]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion kittens/unicode_input/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
}

Expand Down

0 comments on commit acf5868

Please sign in to comment.