[gtk] emoji chooser: Actually force Emoji presentation



commit 1e129c1dd2234be11b13481b2120484e2d255164
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 d8124cb90f..c7b840037b 100644
--- a/gtk/gtkemojichooser.c
+++ b/gtk/gtkemojichooser.c
@@ -361,7 +361,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]