From: Rudolf Polzer Date: Sat, 11 Dec 2010 13:53:23 +0000 (+0100) Subject: default to Arial 9 on Windows (NOT Courier New 8) X-Git-Tag: xonotic-v0.5.0~128 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=5d074cfc12d40924571b2c65f29fcad3397828ad;p=xonotic%2Fnetradiant.git default to Arial 9 on Windows (NOT Courier New 8) --- diff --git a/radiant/mainframe.cpp b/radiant/mainframe.cpp index 0aaf6647..c8a739b6 100644 --- a/radiant/mainframe.cpp +++ b/radiant/mainframe.cpp @@ -3335,9 +3335,8 @@ void GlobalGL_sharedContextCreated() #ifdef WIN32 /* win32 is dodgy here, just use courier new then */ - g_font = glfont_create("courier new 8"); + g_font = glfont_create("arial 9"); #else - /* use default font here (Sans 10 is gtk default) */ GtkSettings *settings = gtk_settings_get_default(); gchar *fontname; g_object_get(settings, "gtk-font-name", &fontname, NULL);