From 14436843d5eeb4a6c02b99cfb68e280b49a08468 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 21 May 2006 02:22:18 +0000 Subject: Default to Sans font when Pango enabled. --- gtk/PlatGTK.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 599d92954..c7a85fea2 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -2584,16 +2584,18 @@ const char *Platform::DefaultFont() { #ifdef G_OS_WIN32 return "Lucida Console"; #else - +#ifdef USE_PANGO + return "!Sans"; +#else return "lucidatypewriter"; #endif +#endif } int Platform::DefaultFontSize() { #ifdef G_OS_WIN32 return 10; #else - return 12; #endif } -- cgit v1.2.3