[gtk+] fontbutton: Display the same text as elsewhere
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] fontbutton: Display the same text as elsewhere
- Date: Thu, 22 Sep 2011 21:47:51 +0000 (UTC)
commit 19623af04e48ab39b2831ae0a600b56f2df25e0c
Author: Benjamin Otte <otte redhat com>
Date: Thu Sep 22 21:21:59 2011 +0200
fontbutton: Display the same text as elsewhere
In particular, display names of families that don't have an installed
font.
gtk/gtkfontbutton.c | 17 ++++++-----------
1 files changed, 6 insertions(+), 11 deletions(-)
---
diff --git a/gtk/gtkfontbutton.c b/gtk/gtkfontbutton.c
index 5e65fb6..96467b0 100644
--- a/gtk/gtkfontbutton.c
+++ b/gtk/gtkfontbutton.c
@@ -1168,21 +1168,16 @@ gtk_font_button_update_font_info (GtkFontButton *font_button)
g_assert (priv->font_desc != NULL);
- if (priv->show_style &&
- priv->font_family != NULL &&
- priv->font_face != NULL &&
- g_ascii_strcasecmp (pango_font_face_get_face_name (priv->font_face), "Regular") != 0)
+ if (priv->show_style)
{
- family_style = g_strdup_printf ("%s %s",
- pango_font_family_get_name (priv->font_family),
- pango_font_face_get_face_name (priv->font_face));
-
+ PangoFontDescription *desc = pango_font_description_copy_static (priv->font_desc);
+ pango_font_description_unset_fields (desc, PANGO_FONT_MASK_SIZE);
+ family_style = pango_font_description_to_string (desc);
+ pango_font_description_free (desc);
}
- else if (priv->font_family != NULL)
- family_style = g_strdup (pango_font_family_get_name (priv->font_family));
else
- family_style = g_strdup ("");
+ family_style = g_strdup (pango_font_description_get_family (priv->font_desc));
gtk_label_set_text (GTK_LABEL (font_button->priv->font_label), family_style);
g_free (family_style);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]