Fixed table alignment

pull/187/head
M66B 4 years ago
parent 2a9eb01da7
commit a773f28950

@ -2140,18 +2140,6 @@ public class HtmlHelper {
setSpan(ssb, new StrikethroughSpan(), start, ssb.length());
break;
case "text-align":
boolean table = false;
Element e = element;
while (e != null) {
if ("table".equals(e.tagName()) ||
"true".equals(e.attr("x-table"))) {
table = true;
break;
}
e = e.parent();
}
if (!table) {
// https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
Layout.Alignment alignment = null;
switch (value) {
@ -2169,7 +2157,6 @@ public class HtmlHelper {
}
if (alignment != null)
setSpan(ssb, new AlignmentSpan.Standard(alignment), start, ssb.length());
}
break;
}
}

Loading…
Cancel
Save