mirror of https://github.com/M66B/FairEmail.git
Fixed mixed list indentation
This commit is contained in:
parent
f25d869b8d
commit
128e45106c
|
@ -2199,7 +2199,7 @@ public class HtmlHelper {
|
|||
int llevel = 0;
|
||||
Element lparent = element.parent();
|
||||
while (lparent != null) {
|
||||
if (lparent.tagName().equals(element.tagName()))
|
||||
if ("ol".equals(element.tagName()) || "ul".equals(element.tagName()))
|
||||
llevel++;
|
||||
lparent = lparent.parent();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue