[gtk/gtk-3-24] emoji chooser: Actually force Emoji presentation



commit b74e3209a5af03678ade12bfe6936171ff204b8c
Author: Matthias Clasen <mclasen redhat com>
Date:   Mon Dec 3 21:46:09 2018 -0500

    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);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]