]> git.wh0rd.org - fontconfig.git/blame - conf.d/20-fix-globaladvance.conf
Bump libtool revision in preparation for release
[fontconfig.git] / conf.d / 20-fix-globaladvance.conf
CommitLineData
9e292c88
KP
1<?xml version="1.0"?>
2<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
9e292c88 3<fontconfig>
c3425fa6
JC
4<!--
5 Some Asian fonts misadvertise themselves as monospaced when
6 in fact they are dual-spaced (half and full). This makes
7 FreeType very confused as it forces all widths to match.
8 Undo this magic by disabling the width forcing code -->
9 <match target="font">
10 <test name="family"><string>GulimChe</string></test>
11 <edit name="globaladvance"><bool>false</bool></edit>
12 </match>
13
14 <match target="font">
15 <test name="family"><string>DotumChe</string></test>
16 <edit name="globaladvance"><bool>false</bool></edit>
17 </match>
18
19 <match target="font">
20 <test name="family"><string>BatangChe</string></test>
21 <edit name="globaladvance"><bool>false</bool></edit>
22 </match>
23
24 <match target="font">
25 <test name="family"><string>GungsuhChe</string></test>
26 <edit name="globaladvance"><bool>false</bool></edit>
27 </match>
9e292c88 28</fontconfig>