mirror of
https://github.com/danbulant/cushy
synced 2026-07-05 19:20:36 +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
|
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() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue