Skip to content

Commit 4e8293d

Browse files
author
Open Lowcode SAS
committed
Close #226
1 parent 972e601 commit 4e8293d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/openlowcode/tools/pdf/PDFPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1428,7 +1428,7 @@ public static BoxTextContent calculateBoxAndMaybeWriteText(
14281428
ArrayList<String> paragraphlines = new ArrayList<String>();
14291429
int lastspace = -1;
14301430
// in this version, tab is treated as any other space
1431-
paragraphtext = paragraphtext.replace('\u0009', ' ').replace('\u0003', ' ');
1431+
paragraphtext = paragraphtext.replace('\u0009', ' ').replace('\u0003', ' ').replace('\u25CF','\u2022');
14321432
while (paragraphtext.length() > 0) {
14331433
int spaceIndex = paragraphtext.indexOf(' ', lastspace + 1);
14341434
if (spaceIndex < 0)

0 commit comments

Comments
 (0)