Blame fontconfig/20-unhint-small-dejavu-sans-mono.conf

Packit 4a307d
Packit 4a307d
Packit 4a307d
<fontconfig>
Packit 4a307d
  
Packit 4a307d
Packit 4a307d
        Disable hinting manually at smaller sizes (< 8ppem)
Packit 4a307d
        This is a copy of the Bistream Vera fonts fonts rule, as DejaVu is
Packit 4a307d
        derived from Vera.
Packit 4a307d
Packit 4a307d
	The Bistream Vera fonts have GASP entries suggesting that hinting be
Packit 4a307d
	disabled below 8 ppem, but FreeType ignores those, preferring to use
Packit 4a307d
	the data found in the instructed hints. The initial Vera release
Packit 4a307d
	didn't include the right instructions in the 'prep' table.
Packit 4a307d
 -->
Packit 4a307d
  <match target="font">
Packit 4a307d
    <test name="family">
Packit 4a307d
      <string>DejaVu Sans Mono</string>
Packit 4a307d
    </test>
Packit 4a307d
    <test compare="less" name="pixelsize">
Packit 4a307d
      <double>7.5</double>
Packit 4a307d
    </test>
Packit 4a307d
    <edit name="hinting">
Packit 4a307d
      <bool>false</bool>
Packit 4a307d
    </edit>
Packit 4a307d
  </match>
Packit 4a307d
</fontconfig>