Fixed formatting errors in motion pdf (Fixed #3228).

for diff view
This commit is contained in:
Emanuel Schütze 2017-05-23 21:34:10 +02:00
parent ed0b1cef54
commit eee0e0fc06
1 changed files with 5 additions and 1 deletions

View File

@ -766,7 +766,9 @@ angular.module('OpenSlidesApp.core.pdf', [])
break;
} else {
currentParagraph = create("text");
if (lineNumberMode == "outside" && brParentNodeName == ("INS" || "DEL")) {
if (lineNumberMode == "outside" &&
brParentNodeName != "LI"&&
element.parentNode.parentNode.nodeName != "LI") {
currentParagraph.margin = [20, 0, 0, 0];
}
currentParagraph.lineHeight = 1.25;
@ -860,6 +862,7 @@ angular.module('OpenSlidesApp.core.pdf', [])
case "ul":
case "ol":
var list = create(nodeName);
ComputeStyle(list, styles);
if (lineNumberMode == "outside") {
var lines = extractLineNumbers(element);
currentParagraph = parseChildren(list[nodeName], element, currentParagraph, styles, diff_mode);
@ -884,6 +887,7 @@ angular.module('OpenSlidesApp.core.pdf', [])
listCol.margin = [0,10,0,0];
alreadyConverted.push(listCol);
} else {
list.margin = [20, 0, 0, 0];
alreadyConverted.push(list);
}
} else {