css_applyLayout crack #236
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@dshahidehpour Can you take a look?
It fails because
node->children
is NULL. The problem seems to have been introduced here01c2ac3369 (diff-937e78d20ebabc2f92fe6f07dc70d4a3L198)
Using
node->children = CSSNodeListNew(4);
inCSSNodeInit
works for me but it's not the optimal solution.Thanks for spotting! I'm adding a fix right now.
Just landed a fix with
ced779b259
It works! Thanks :)