diff --git a/crates/bevy_ui/src/flex/mod.rs b/crates/bevy_ui/src/flex/mod.rs index 219401f2211a20..09d45487a92f59 100644 --- a/crates/bevy_ui/src/flex/mod.rs +++ b/crates/bevy_ui/src/flex/mod.rs @@ -303,7 +303,8 @@ fn upsert_window_nodes( let window = if let Some(node_window_id) = node_window_id { trace!( "Adding window node for: {:?} on {:?}", - entity, node_window_id.0 + entity, + node_window_id.0 ); windows.get(node_window_id.0).unwrap() } else { @@ -378,7 +379,8 @@ fn update_window_sizes( if resized_window_id == entity_window_id { trace!( "Rescaling window node for {:?} ({:?})", - entity, resized_window_id + entity, + resized_window_id ); *dirty_layout = true; set_window_node_style( @@ -545,7 +547,8 @@ fn update_stacking_context( } trace!( "{:?} has ZIndex::Auto, including it into its parent {:?}", - entity, **parent + entity, + **parent ); return update_stacking_context(flex_surface, **parent, style_query); }