From b74e3209a5af03678ade12bfe6936171ff204b8c Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 3 Dec 2018 21:46:09 -0500 Subject: [PATCH] emoji chooser: Actually force Emoji presentation The previous commit was using the text presentation selector instead of the Emoji one. Oops. --- gtk/gtkemojichooser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkemojichooser.c b/gtk/gtkemojichooser.c index ba5ac51b58..6efb056a42 100644 --- a/gtk/gtkemojichooser.c +++ b/gtk/gtkemojichooser.c @@ -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);