gtk-demo: Don't hardcode a title font

We want a large font size, but we don't have to
hardcode Sans.
This commit is contained in:
Matthias Clasen 2022-03-18 00:59:57 -04:00 committed by Christian Hergert
parent 8f9ee48aaa
commit 79fad9f221

View File

@ -512,7 +512,7 @@ load_file (const char *demoname,
info_buffer = gtk_text_buffer_new (NULL);
gtk_text_buffer_create_tag (info_buffer, "title",
"font", "Sans 18",
"size", 18 * 1024,
"pixels-below-lines", 10,
NULL);