mirror of
https://github.com/danbulant/cushy
synced 2026-06-15 04:21:06 +00:00
Removed dbg! statement
This commit is contained in:
parent
9b3e6c13f4
commit
457962cc48
1 changed files with 1 additions and 1 deletions
|
|
@ -499,7 +499,7 @@ impl TreeData {
|
|||
removed_node
|
||||
.children
|
||||
.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() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue