Use pango_context_get_metrics instead of loading the font.

2002-02-13  Anders Carlsson  <andersca@gnu.org>

	* src/theme.c (meta_pango_font_desc_get_text_height): Use
	pango_context_get_metrics instead of loading the font.
This commit is contained in:
Anders Carlsson 2002-02-13 22:50:57 +00:00 committed by Anders Carlsson
parent c6ebcae729
commit 0ed0c3bab6
2 changed files with 8 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2002-02-13 Anders Carlsson <andersca@gnu.org>
* src/theme.c (meta_pango_font_desc_get_text_height): Use
pango_context_get_metrics instead of loading the font.
2002-02-12 Anders Carlsson <andersca@gnu.org>
* src/frames.c (meta_frames_manage_window): Set prelit_control

View File

@ -4664,15 +4664,11 @@ meta_pango_font_desc_get_text_height (PangoFontDescription *font_desc,
PangoContext *context)
{
PangoFontMetrics *metrics;
PangoFont *font;
PangoLanguage *lang;
int retval;
font = pango_context_load_font (context, font_desc);
lang = pango_context_get_language (context);
metrics = pango_font_get_metrics (font, lang);
g_object_unref (G_OBJECT (font));
metrics = pango_context_get_metrics (context, font_desc, lang);
retval = PANGO_PIXELS (pango_font_metrics_get_ascent (metrics) +
pango_font_metrics_get_descent (metrics));