From: divverent Date: Tue, 28 Apr 2009 12:48:47 +0000 (+0000) Subject: if a font was not found, fall back to fixed or courier new - should fix "missing... X-Git-Tag: svn-r421~68 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=9374d73cbf087cfb4bf6e45f8d5c39a55c56f62d;p=xonotic%2Fnetradiant.git if a font was not found, fall back to fixed or courier new - should fix "missing font" issues git-svn-id: svn://svn.icculus.org/netradiant/trunk@352 61c419a2-8eb2-4b30-bcec-8cead039b335 --- diff --git a/libs/gtkutil/glfont.cpp b/libs/gtkutil/glfont.cpp index 13d16fdb..d2d3b870 100644 --- a/libs/gtkutil/glfont.cpp +++ b/libs/gtkutil/glfont.cpp @@ -113,6 +113,20 @@ GLFont glfont_create(const char* font_string) PangoFont* font = gdk_gl_font_use_pango_font (font_desc, 0, 256, font_list_base); + if(font == 0) + { + pango_font_description_free (font_desc); + font_desc = pango_font_description_from_string ("fixed 8"); + font = gdk_gl_font_use_pango_font (font_desc, 0, 256, font_list_base); + } + + if(font == 0) + { + pango_font_description_free (font_desc); + font_desc = pango_font_description_from_string ("courier new 8"); + font = gdk_gl_font_use_pango_font (font_desc, 0, 256, font_list_base); + } + if(font != 0) { PangoFontMetrics* font_metrics = pango_font_get_metrics (font, 0);