diff options
Diffstat (limited to 'src/java/org')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java b/src/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java index 31c684639..ee3a5bdba 100644 --- a/src/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java @@ -123,6 +123,9 @@ public class TableLayoutManager extends BlockStackingLayoutManager referenceIPD = context.getRefIPD(); if (fobj.getInlineProgressionDimension().getOptimum().getEnum() != EN_AUTO) { referenceIPD = fobj.getInlineProgressionDimension().getOptimum().getLength().getValue(); + } else if( !fobj.isAutoLayout() ) { + log.info("table-layout=\"fixed\" and width=\"auto\", but auto-layout not supported " + + "=> assuming width=\"100%\""); } if (referenceIPD > context.getRefIPD()) { log.warn("Allocated IPD exceeds available reference IPD"); |