Comment # 15 on bug 905623 from
> you can do following experiment. Add ... to the /etc/fonts/local.conf.

# cat /etc/fonts/local.conf
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- /etc/fonts/local.conf file for local customizations -->
<fontconfig>
  <!-- prevent yast2 to use Arial Black instead of Arial -->
  <match target="font">
    <test qual="any" name="family">
      <string>Arial Black</string>
    </test>
    <edit name="family" mode="assign_replace">
      <string>Arial Black</string>
      <string>Arial</string>
    </edit>
  </match>
</fontconfig>

> 1. Does it help to wipe out Arial Black from yast dialog?

no

> 2.

# fc-match Arial:style=black
ariblk.ttf: "Arial Black" "Standard"
# fc-match Arial:weight=210
ariblk.ttf: "Arial Black" "Black"


Prior to the changes in /etc/local conf:
# fc-match Arial:style=black
ariblk.ttf: "Arial" "Standard"
# fc-match Arial:weight=210
ariblk.ttf: "Arial" "Black"


You are receiving this mail because: