default to Arial 9 on Windows (NOT Courier New 8)

This commit is contained in:
Rudolf Polzer 2010-12-11 14:53:23 +01:00
parent 50218d2883
commit 5d074cfc12

View File

@ -3335,9 +3335,8 @@ void GlobalGL_sharedContextCreated()
#ifdef WIN32 #ifdef WIN32
/* win32 is dodgy here, just use courier new then */ /* win32 is dodgy here, just use courier new then */
g_font = glfont_create("courier new 8"); g_font = glfont_create("arial 9");
#else #else
/* use default font here (Sans 10 is gtk default) */
GtkSettings *settings = gtk_settings_get_default(); GtkSettings *settings = gtk_settings_get_default();
gchar *fontname; gchar *fontname;
g_object_get(settings, "gtk-font-name", &fontname, NULL); g_object_get(settings, "gtk-font-name", &fontname, NULL);