You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by gm...@apache.org on 2003/12/31 00:11:00 UTC

cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr BlockLayoutManager.java

gmazza      2003/12/30 15:11:00

  Modified:    src/java/org/apache/fop/layoutmgr BlockLayoutManager.java
  Log:
  Bug #25813 (Patch by Finn Bock):  Calculation change in setBlockTextInfo().
  
  Revision  Changes    Path
  1.11      +1 -1      xml-fop/src/java/org/apache/fop/layoutmgr/BlockLayoutManager.java
  
  Index: BlockLayoutManager.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/layoutmgr/BlockLayoutManager.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- BlockLayoutManager.java	24 Nov 2003 19:07:35 -0000	1.10
  +++ BlockLayoutManager.java	30 Dec 2003 23:11:00 -0000	1.11
  @@ -170,7 +170,7 @@
   
       public void setBlockTextInfo(TextInfo ti) {
           lead = ti.fs.getAscender();
  -        follow = ti.fs.getDescender();
  +        follow = -ti.fs.getDescender();
           lineHeight = ti.lineHeight;
       }
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org