From b7ac3b270c6ba5c1d93813a1ca15b35bc1fb1cba Mon Sep 17 00:00:00 2001 From: ickshonpe Date: Fri, 11 Jul 2025 23:45:56 +0100 Subject: [PATCH] Removed debug printlns from example --- examples/ui/scroll.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/examples/ui/scroll.rs b/examples/ui/scroll.rs index d41c88f839..04b44aa4b2 100644 --- a/examples/ui/scroll.rs +++ b/examples/ui/scroll.rs @@ -363,11 +363,3 @@ pub fn update_scroll_position( } } } - -fn report(sq: Query, With>) { - for node in sq { - println!("node size = {} ", node.size()); - println!("content size = {} ", node.content_size()); - println!("scrollbar size = {}", node.scrollbar_size); - } -}