mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-16 07:04:29 +00:00
Force emoji presentation
Append a variation selector to the Emoji sequences, to force Emoji presentation. Without this, some Emoji come out with text presentation by default. Closes: Pango #334
This commit is contained in:
parent
6e28d004ae
commit
7a4e9fa4d3
@ -361,6 +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[0] = 0;
|
||||
|
||||
label = gtk_label_new (text);
|
||||
|
@ -452,6 +452,7 @@ get_text (GVariant *emoji_data,
|
||||
p += g_unichar_to_utf8 (code, p);
|
||||
}
|
||||
g_variant_unref (codes);
|
||||
p += g_unichar_to_utf8 (0xFE0F, p); /* U+FE0F is the Emoji variation selector */
|
||||
p[0] = 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user