mirror of
https://github.com/brl/mutter.git
synced 2025-02-16 13:24:09 +00:00
fix the be-sure-we-create-coverage-cache hack
2002-02-23 Havoc Pennington <hp@pobox.com> * src/ui.c (meta_ui_init): fix the be-sure-we-create-coverage-cache hack
This commit is contained in:
parent
20218dac92
commit
2d01419577
@ -1,3 +1,8 @@
|
|||||||
|
2002-02-23 Havoc Pennington <hp@pobox.com>
|
||||||
|
|
||||||
|
* src/ui.c (meta_ui_init): fix the
|
||||||
|
be-sure-we-create-coverage-cache hack
|
||||||
|
|
||||||
2002-02-19 Havoc Pennington <hp@pobox.com>
|
2002-02-19 Havoc Pennington <hp@pobox.com>
|
||||||
|
|
||||||
* src/ui.c (meta_ui_init): put in hack to keep Pango from mangling
|
* src/ui.c (meta_ui_init): put in hack to keep Pango from mangling
|
||||||
|
27
src/ui.c
27
src/ui.c
@ -44,13 +44,26 @@ meta_ui_init (int *argc, char ***argv)
|
|||||||
if (!gtk_init_check (argc, argv))
|
if (!gtk_init_check (argc, argv))
|
||||||
meta_fatal ("Unable to open X display %s\n", XDisplayName (NULL));
|
meta_fatal ("Unable to open X display %s\n", XDisplayName (NULL));
|
||||||
|
|
||||||
/* FIXME hackaround for Pango opening a separate display
|
{
|
||||||
* connection and doing a server grab while we have a grab
|
/* FIXME hackaround for Pango opening a separate display
|
||||||
* on the primary display connection. This forces Pango to
|
* connection and doing a server grab while we have a grab
|
||||||
* go ahead and do its font cache before we try to grab
|
* on the primary display connection. This forces Pango to
|
||||||
* the server.
|
* go ahead and do its font cache before we try to grab
|
||||||
*/
|
* the server.
|
||||||
pango_x_font_map_for_display (gdk_display);
|
*/
|
||||||
|
PangoFontMetrics *metrics;
|
||||||
|
PangoLanguage *lang;
|
||||||
|
PangoContext *context;
|
||||||
|
PangoFontDescription *font_desc;
|
||||||
|
|
||||||
|
context = gdk_pango_context_get ();
|
||||||
|
lang = gtk_get_default_language ();
|
||||||
|
font_desc = pango_font_description_from_string ("Sans 12");
|
||||||
|
metrics = pango_context_get_metrics (context, font_desc, lang);
|
||||||
|
|
||||||
|
pango_font_metrics_unref (metrics);
|
||||||
|
pango_font_description_free (font_desc);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Display*
|
Display*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user