mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Prevent extra line for aligned columns
This commit is contained in:
parent
d9d1b4c8b3
commit
84a502f2db
1 changed files with 4 additions and 0 deletions
|
@ -904,6 +904,10 @@ public class HtmlHelper {
|
|||
"left".equals(align) ||
|
||||
"start".equals(align))
|
||||
col.tagName("div").removeAttr("x-block");
|
||||
else {
|
||||
if ("true".equals(col.attr("x-line-before")))
|
||||
col.removeAttr("x-line-before");
|
||||
}
|
||||
|
||||
if (next != null && col.childNodeSize() > 0)
|
||||
col.appendText("\u2002"); // ensp
|
||||
|
|
Loading…
Reference in a new issue