Removed dbg! statement

This commit is contained in:
Jonathan Johnson 2024-08-20 12:03:09 -07:00
parent 9b3e6c13f4
commit 457962cc48
No known key found for this signature in database
GPG key ID: A66D6A34D6620579

View file

@ -499,7 +499,7 @@ impl TreeData {
removed_node removed_node
.children .children
.into_iter() .into_iter()
.filter_map(|id| dbg!(self.nodes.get(id).map(|node| node.widget.id()))), .filter_map(|id| self.nodes.get(id).map(|node| node.widget.id())),
); );
if let Some(next_focus) = removed_node.widget.next_focus() { if let Some(next_focus) = removed_node.widget.next_focus() {