aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/layout/LineArea.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/layout/LineArea.java')
-rw-r--r--src/org/apache/fop/layout/LineArea.java26
1 files changed, 10 insertions, 16 deletions
diff --git a/src/org/apache/fop/layout/LineArea.java b/src/org/apache/fop/layout/LineArea.java
index 2c51041e4..d7d703940 100644
--- a/src/org/apache/fop/layout/LineArea.java
+++ b/src/org/apache/fop/layout/LineArea.java
@@ -474,13 +474,9 @@ public class LineArea extends Area {
switch (leaderPattern) {
case LeaderPattern.SPACE:
- //whitespace setting must be false for this
- int whiteSpaceSetting = this.whiteSpaceCollapse;
- this.changeWhiteSpaceCollapse(WhiteSpaceCollapse.FALSE);
- pendingAreas.addElement(
- this.buildSimpleLeader(whitespaceIndex,
- leaderLength));
- this.changeWhiteSpaceCollapse(whiteSpaceSetting);
+ InlineSpace spaceArea =
+ new InlineSpace(leaderLength);
+ pendingAreas.addElement(spaceArea);
break;
case LeaderPattern.RULE:
LeaderArea leaderArea =
@@ -751,19 +747,17 @@ public class LineArea extends Area {
* creates a leader as String out of the given char and the leader length
* and wraps it in an InlineArea which is returned
*/
- private InlineArea buildSimpleLeader(int charNumber, int leaderLength) {
- int width = this.currentFontState.width(charNumber);
- if (width == 0) {
- char c = (char) charNumber;
- MessageHandler.errorln("char " + c + " has width 0. Using width 100 instead.");
- width = 100;
- }
+ private InlineArea buildSimpleLeader(char c, int leaderLength) {
+ int width = this.currentFontState.width(currentFontState.mapChar(c));
+ if (width == 0) {
+ MessageHandler.errorln("char " + c + " has width 0. Using width 100 instead.");
+ width = 100;
+ }
int factor = (int) Math.floor (leaderLength /
width);
char [] leaderChars = new char [factor];
- char fillChar = (char) charNumber;
for (int i = 0; i < factor; i ++) {
- leaderChars[i] = fillChar;
+ leaderChars[i] = c;//currentFontState.mapChar(c);
}
WordArea leaderPatternArea =
new WordArea(currentFontState, this.red, this.green,