1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
--- unix.js.orig Wed May 1 18:50:25 2002
+++ unix.js Wed May 1 19:30:44 2002
@@ -225,21 +225,21 @@
pref("font.scale.outline.min", 6);
// TrueType
-pref("font.FreeType2.enable", false);
+pref("font.FreeType2.enable", true);
pref("font.freetype2.shared-library", "libfreetype.so.6");
// if libfreetype was built without hinting compiled in
// it is best to leave hinting off
-pref("font.FreeType2.autohinted", false);
-pref("font.FreeType2.unhinted", true);
+pref("font.FreeType2.autohinted", false);
+pref("font.FreeType2.unhinted", false);
// below a certian pixel size anti-aliased fonts produce poor results
pref("font.antialias.min", 10);
pref("font.embedded_bitmaps.max", 1000000);
pref("font.scale.tt_bitmap.dark_text.min", 64);
pref("font.scale.tt_bitmap.dark_text.gain", "0.8");
// sample prefs for TrueType font dirs
-//pref("font.directory.truetype.1", "/u/sam/tt_font");
-//pref("font.directory.truetype.2", "/u/sam/tt_font2");
-//pref("font.directory.truetype.3", "/u/sam/tt_font3");
+pref("font.directory.truetype.1", "/usr/share/fonts/truetype");
+pref("font.directory.truetype.2", "/usr/X11R6/lib/X11/fonts/TTF");
+pref("font.directory.truetype.3", "/usr/X11R6/lib/X11/fonts/truetype");
// below a certian pixel size anti-aliased bitmat scaled fonts
// produce poor results
|