diff options
| author | pml68 <contact@pml68.me> | 2024-10-24 20:45:26 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.me> | 2024-10-24 20:45:26 +0200 |
| commit | 75b8ef8d9801aec40654c955ff941a3205859603 (patch) | |
| tree | e0d71055e8c741e105b89616cd4255219c581621 /iced_builder/src/main.rs | |
| parent | feat: disable appending to container if it already has children (diff) | |
| download | iced-builder-75b8ef8d9801aec40654c955ff941a3205859603.tar.gz | |
test: remove some unneeded printlns
Diffstat (limited to 'iced_builder/src/main.rs')
| -rw-r--r-- | iced_builder/src/main.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/iced_builder/src/main.rs b/iced_builder/src/main.rs index 0c76374..424e0e0 100644 --- a/iced_builder/src/main.rs +++ b/iced_builder/src/main.rs @@ -119,7 +119,6 @@ impl App { .into() } Message::HandleNew(name, zones) => { - //println!("\n\n{:?}\n{name}\n{:?}", zones, self.title()); let ids: Vec<Id> = zones.into_iter().map(|z| z.0).collect(); if ids.len() > 0 { let action = ActionKind::new(ids, &mut self.project.content.clone(), None); @@ -157,13 +156,6 @@ impl App { ) ); } - //println!( - // "\n\n{:?}\n{element:0.4}", - // zones - // .into_iter() - // .map(|c| c.0) - // .collect::<Vec<iced::advanced::widget::Id>>() - //); } Message::PaneResized(pane_grid::ResizeEvent { split, ratio }) => { self.pane_state.resize(split, ratio); |
