Removed debug printlns from example

This commit is contained in:
ickshonpe 2025-07-11 23:45:56 +01:00
parent ce7d507d86
commit b7ac3b270c

View File

@ -363,11 +363,3 @@ pub fn update_scroll_position(
}
}
}
fn report(sq: Query<Ref<ComputedNode>, With<ScrollingList>>) {
for node in sq {
println!("node size = {} ", node.size());
println!("content size = {} ", node.content_size());
println!("scrollbar size = {}", node.scrollbar_size);
}
}