From 8535db8d932f229eb655984e82e755120c97d4d3 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Sun, 29 Jan 2012 01:39:24 +0000 Subject: [PATCH] Bug 5474: Unicode chars can't display on Mac GTK-OSX port Make Arial Unicode MS the default face for OSX Supports East Asian, Semitic, and European scripts, but not Indic (Hindi, Telugu, Tamil, Thai, etc.). Since Pango's ATSUI backend doesn't support fallback, users of these scripts will have to override the default face in their ~/.gtkrc-2.0 svn: r18790 --- 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"