summaryrefslogtreecommitdiff
path: root/content/handlers
diff options
context:
space:
mode:
Diffstat (limited to 'content/handlers')
-rw-r--r--content/handlers/html/layout_flex.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/content/handlers/html/layout_flex.c b/content/handlers/html/layout_flex.c
index b63cb5d6c..c9e02a6af 100644
--- a/content/handlers/html/layout_flex.c
+++ b/content/handlers/html/layout_flex.c
@@ -187,19 +187,16 @@ static bool layout_flex_item(
switch (b->type) {
case BOX_BLOCK:
- success = layout_block_context(b, -1,
- ctx->content);
+ success = layout_block_context(b, -1, ctx->content);
break;
case BOX_TABLE:
b->float_container = b->parent;
- success = layout_table(b, available_width,
- ctx->content);
+ success = layout_table(b, available_width, ctx->content);
b->float_container = NULL;
break;
case BOX_FLEX:
b->float_container = b->parent;
- success = layout_flex(b, available_width,
- ctx->content);
+ success = layout_flex(b, available_width, ctx->content);
b->float_container = NULL;
break;
default: