GHashTable *glk_text_buffer_styles = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, g_object_unref);
GtkTextTag *tag;
- PangoFontDescription *default_font_desc = pango_font_description_from_string("Serif");
- PangoFontDescription *monospace_font_desc = pango_font_description_from_string("Monospace");
-
/* Initialise the default styles for a text grid */
tag = gtk_text_tag_new("default");
- g_object_set(tag, "family", "Monospace", NULL);
+ g_object_set(tag, "family", "Monospace", "family-set", TRUE, NULL);
g_hash_table_insert(default_text_grid_styles, "default", tag);
tag = gtk_text_tag_new("normal");