diff options
Diffstat (limited to 'components/layout/layout_thread.rs')
-rw-r--r-- | components/layout/layout_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/layout_thread.rs b/components/layout/layout_thread.rs index c1e882f2a32..f6f88a0f29b 100644 --- a/components/layout/layout_thread.rs +++ b/components/layout/layout_thread.rs @@ -1425,7 +1425,7 @@ impl LayoutThread { debug!("reflowing all nodes!"); flow::mut_base(flow).restyle_damage.insert(REFLOW | REPAINT); - for child in flow::child_iter(flow) { + for child in flow::child_iter_mut(flow) { LayoutThread::reflow_all_nodes(child); } } |