From b07bda787c02210d018c39d917b02ca0bee87de7 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 19 Nov 2022 17:30:25 +0000 Subject: html: layout: flex: Minor code style change --- content/handlers/html/layout_flex.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'content/handlers') 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: -- cgit v1.2.3