diff --git a/ChangeLog b/ChangeLog index 9230eca589..6a3804851a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-07-03 Matthias Clasen + + Bug 535498 – Printing demo broken + + * demos/gtk-demo/printing.c: Use monospace as font name, + not mono. Patch by Yevgen Muntyan. + 2008-07-03 Matthias Clasen Bug 538547 – Update doc-shooter in gtk documentation diff --git a/demos/gtk-demo/printing.c b/demos/gtk-demo/printing.c index efa5838215..03997174d6 100644 --- a/demos/gtk-demo/printing.c +++ b/demos/gtk-demo/printing.c @@ -112,7 +112,7 @@ draw_page (GtkPrintOperation *operation, layout = gtk_print_context_create_pango_layout (context); - desc = pango_font_description_from_string ("mono"); + desc = pango_font_description_from_string ("monospace"); pango_font_description_set_size (desc, data->font_size * PANGO_SCALE); pango_layout_set_font_description (layout, desc); pango_font_description_free (desc);