We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe11293 commit 504117cCopy full SHA for 504117c
layout/src/main/java/com/itextpdf/layout/renderer/ParagraphRenderer.java
@@ -78,6 +78,7 @@ This file is part of the iText (R) project.
78
*/
79
public class ParagraphRenderer extends BlockRenderer {
80
81
+ @Deprecated
82
protected float previousDescent = 0;
83
protected List<LineRenderer> lines = null;
84
@@ -181,6 +182,7 @@ public LayoutResult layout(LayoutContext layoutContext) {
181
182
float lastYLine = layoutBox.getY() + layoutBox.getHeight();
183
Leading leading = this.<Leading>getProperty(Property.LEADING);
184
185
+ float previousDescent = 0;
186
float lastLineBottomLeadingIndent = 0;
187
boolean onlyOverflowedFloatsLeft = false;
188
List<IRenderer> inlineFloatsOverflowedToNextPage = new ArrayList<>();
0 commit comments