]> de.git.xonotic.org Git - xonotic/netradiant.git/commitdiff
default to Arial 9 on Windows (NOT Courier New 8)
authorRudolf Polzer <divverent@alientrap.org>
Sat, 11 Dec 2010 13:53:23 +0000 (14:53 +0100)
committerRudolf Polzer <divverent@alientrap.org>
Sat, 11 Dec 2010 13:53:23 +0000 (14:53 +0100)
radiant/mainframe.cpp

index 0aaf664799c370bc411dfc4bc0a4723ce90bcd21..c8a739b6f6939952f32845849e74b8c5b6252d5e 100644 (file)
@@ -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);