mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Small improvement
This commit is contained in:
parent
0188979140
commit
c4e366ce9f
1 changed files with 7 additions and 1 deletions
|
@ -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) ||
|
||||
|
|
Loading…
Reference in a new issue