소스 검색

set the (default) LayoutStrategy only if it has not been set already


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196919 13f79535-47bb-0310-9956-ffa450edef68
pull/30/head
William Victor Mote 21 년 전
부모
커밋
9fa86e61c0
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      src/java/org/apache/fop/apps/Driver.java

+ 3
- 1
src/java/org/apache/fop/apps/Driver.java 파일 보기

@@ -581,7 +581,9 @@ public class Driver implements LogEnabled {
/** LayoutStrategy is hard-wired for now, but needs to be made
accessible through the API and/or configuration */
if (foInputHandler instanceof FOTreeHandler) {
currentDocument.setLayoutStrategy(new LayoutManagerLS(currentDocument));
if (currentDocument.getLayoutStrategy() == null) {
currentDocument.setLayoutStrategy(new LayoutManagerLS(currentDocument));
}
}
treeBuilder.foTreeControl = currentDocument;
try {

Loading…
취소
저장