Fix custom emoji picker for gtk >= 3.24.30

fixes #1083
This commit is contained in:
fiaxh 2021-07-29 17:09:26 +02:00
parent defdf8e6ae
commit 7cedb64d3f
1 changed files with 3 additions and 0 deletions

View File

@ -437,6 +437,9 @@ populate_emoji_chooser (gpointer data)
if (!chooser->data)
{
bytes = g_resources_lookup_data ("/org/gtk/libgtk/emoji/emoji.data", 0, NULL);
if (bytes == NULL) {
bytes = g_resources_lookup_data ("/org/gtk/libgtk/emoji/en.data", 0, NULL);
}
chooser->data = g_variant_ref_sink (g_variant_new_from_bytes (G_VARIANT_TYPE ("a(auss)"), bytes, TRUE));
}