diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-21 14:06:30 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-22 14:28:14 +0200 |
commit | 21b8d2bd91a7199399d55805f709448ca410a8b9 (patch) | |
tree | 56755091af449918388180497266b7a33b0fe304 /components/layout/multicol.rs | |
parent | 959f8c11cddfa5ec066a40904f8eafb7ad75229d (diff) | |
download | servo-21b8d2bd91a7199399d55805f709448ca410a8b9.tar.gz servo-21b8d2bd91a7199399d55805f709448ca410a8b9.zip |
Pass SharedStyleContext to propagate_assigned_inline_size_to_children.
Diffstat (limited to 'components/layout/multicol.rs')
-rw-r--r-- | components/layout/multicol.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/multicol.rs b/components/layout/multicol.rs index 09f0efd1130..fa50eb7a217 100644 --- a/components/layout/multicol.rs +++ b/components/layout/multicol.rs @@ -119,7 +119,7 @@ impl Flow for MulticolFlow { self.block_flow.fragment.border_box.size.inline = content_inline_size + padding_and_borders; self.block_flow.propagate_assigned_inline_size_to_children( - layout_context, inline_start_content_edge, inline_end_content_edge, column_width, + layout_context.shared_context(), inline_start_content_edge, inline_end_content_edge, column_width, |_, _, _, _, _, _| {}); } |