From 00ce7695b20ef656c43f4ced2f877de16e8db1eb Mon Sep 17 00:00:00 2001 From: John Ralls Date: Sun, 29 Jan 2012 01:33:44 +0000 Subject: [PATCH] Bug 5474 Unicode chars can't display on Mac GTK-OSX port Make Arial Unicode MS the default face on Mac Supports East Asian, Semitic, and European scripts. Fails with Indic (Hindi, Telugu, Tamil, Thai, etc.) scripts. Since fallback isn't supported for the ATSUI backend of Pango, users of unsupported scripts will have to override this in their ~/.gtkrc-2.0 files. svn: r18789 --- mac/gtkrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mac/gtkrc b/mac/gtkrc index ba5477cae..219155eed 100644 --- a/mac/gtkrc +++ b/mac/gtkrc @@ -1,2 +1,7 @@ gtk-icon-theme-name = "Tango" gtk-enable-mnemonics = 0 +style "UniFont" { + font_name = "Arial Unicode MS" +} + +widget_class "*" style "UniFont"