emoji chooser: Actually force Emoji presentation

The previous commit was using the text presentation selector
instead of the Emoji one. Oops.
This commit is contained in:
Matthias Clasen 2018-12-03 21:46:09 -05:00
parent 2de5572076
commit b74e3209a5

View File

@ -392,7 +392,7 @@ add_emoji (GtkWidget *box,
p += g_unichar_to_utf8 (code, p);
}
g_variant_unref (codes);
p += g_unichar_to_utf8 (0xFE0E, p); /* U+FE0F is the Emoji variation selector */
p += g_unichar_to_utf8 (0xFE0F, p); /* U+FE0F is the Emoji variation selector */
p[0] = 0;
label = gtk_label_new (text);