1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 12:44:42 +00:00

Small improvement

This commit is contained in:
M66B 2020-11-10 09:57:08 +01:00
parent 0188979140
commit c4e366ce9f

View file

@ -843,7 +843,12 @@ public class HtmlHelper {
List<Node> merge = new ArrayList<>();
for (Element col : row.children()) {
Element next = col.nextElementSibling();
if (col.childNodeSize() == 1) {
// Merge single images into next column
if (col.childNodeSize() == 1 &&
(next == null ||
next.attr("x-align")
.equals(col.attr("x-align")))) {
Node lonely = col.childNode(0);
if (lonely instanceof Element &&
"img".equals(lonely.nodeName())) {
@ -870,6 +875,7 @@ public class HtmlHelper {
col.appendChild(strong);
}
// Flow not / left aligned columns
String align = col.attr("x-align");
if (TextUtils.isEmpty(align) ||
"left".equals(align) ||