1
0
Fork 0

Detail the font-name value in the font settings debug note

This commit is contained in:
Emmanuele Bassi 2010-06-25 11:40:32 +01:00
parent 527ad961ab
commit 2e4e321dad

View file

@ -133,15 +133,17 @@ settings_update_font_options (ClutterSettings *self)
cairo_font_options_set_antialias (options, antialias_mode); cairo_font_options_set_antialias (options, antialias_mode);
CLUTTER_NOTE (BACKEND, "New font options:\n" CLUTTER_NOTE (BACKEND, "New font options:\n"
" - font-name: %s\n"
" - antialias: %d\n" " - antialias: %d\n"
" - hinting: %d\n" " - hinting: %d\n"
" - hint-style: %s\n" " - hint-style: %s\n"
" - rgba: %s\n" " - rgba: %s\n"
" - dpi: %.2f", " - dpi: %.2f",
self->font_name != NULL ? self->font_name : DEFAULT_FONT_NAME,
self->xft_antialias, self->xft_antialias,
self->xft_hinting, self->xft_hinting,
self->xft_hint_style, self->xft_hint_style != NULL ? self->font_name : "<null>",
self->xft_rgba, self->xft_rgba != NULL ? self->xft_rgba : "<null>",
self->resolution); self->resolution);
clutter_backend_set_font_options (self->backend, options); clutter_backend_set_font_options (self->backend, options);