mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Emoji: Eliminate unused images, make sure panel clicks add emoji (#1849)
* Emoji: Ensure that all clicks work by using emoji data directly * Eliminate a number of unused emoji images from final build * Re-add the generic sheets directory, which we partially filter
This commit is contained in:
@@ -974,7 +974,7 @@
|
||||
this.updateMessageFieldSize({});
|
||||
},
|
||||
insertEmoji: function(e) {
|
||||
var colons = ':' + emoji.data[e.unified.toLowerCase()][3][0] + ':';
|
||||
var colons = ':' + emojiData[e.index].short_name + ':';
|
||||
|
||||
var textarea = this.$messageField[0];
|
||||
if (textarea.selectionStart || textarea.selectionStart == '0') {
|
||||
|
||||
Reference in New Issue
Block a user