mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-24 21:16:50 +03:00
Tidy up where spaces were used for indentation.
svn path=/trunk/netsurf/; revision=5555
This commit is contained in:
parent
a5ac56655c
commit
7293b6f4bb
@ -1268,10 +1268,14 @@ bool layout_inline_container(struct box *inline_container, int width,
|
||||
for (c = inline_container->children; c; c = c->next) {
|
||||
bool is_pre = false;
|
||||
if (c->style)
|
||||
is_pre = (c->style->white_space == CSS_WHITE_SPACE_PRE ||
|
||||
c->style->white_space == CSS_WHITE_SPACE_PRE_LINE ||
|
||||
c->style->white_space == CSS_WHITE_SPACE_PRE_WRAP);
|
||||
if ((!c->object && c->text && (c->length || is_pre)) || c->type == BOX_BR)
|
||||
is_pre = (c->style->white_space ==
|
||||
CSS_WHITE_SPACE_PRE ||
|
||||
c->style->white_space ==
|
||||
CSS_WHITE_SPACE_PRE_LINE ||
|
||||
c->style->white_space ==
|
||||
CSS_WHITE_SPACE_PRE_WRAP);
|
||||
if ((!c->object && c->text && (c->length || is_pre)) ||
|
||||
c->type == BOX_BR)
|
||||
has_text_children = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user