瀏覽代碼

Improvement in handling relative font-weights

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@554087 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_94
Andreas L. Delmelle 17 年之前
父節點
當前提交
2a0465e86c
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      src/java/org/apache/fop/fo/FOPropertyMapping.java

+ 2
- 1
src/java/org/apache/fop/fo/FOPropertyMapping.java 查看文件

@@ -41,6 +41,7 @@ import org.apache.fop.fo.properties.FontShorthandParser;
import org.apache.fop.fo.properties.FontShorthandProperty;
import org.apache.fop.fo.properties.FontSizePropertyMaker;
import org.apache.fop.fo.properties.FontStretchPropertyMaker;
import org.apache.fop.fo.properties.FontWeightPropertyMaker;
import org.apache.fop.fo.properties.GenericShorthandParser;
import org.apache.fop.fo.properties.IndentPropertyMaker;
import org.apache.fop.fo.properties.KeepProperty;
@@ -1032,7 +1033,7 @@ public final class FOPropertyMapping implements Constants {
addPropertyMaker("font-variant", m);

// font-weight
m = new EnumProperty.Maker(PR_FONT_WEIGHT);
m = new FontWeightPropertyMaker(PR_FONT_WEIGHT);
m.setInherited(true);
m.addKeyword("normal", "400");
m.addKeyword("bold", "700");

Loading…
取消
儲存