summaryrefslogtreecommitdiff
path: root/iced_builder/src/main.rs
diff options
context:
space:
mode:
authorpml68 <contact@pml68.me>2024-10-24 20:45:26 +0200
committerpml68 <contact@pml68.me>2024-10-24 20:45:26 +0200
commit75b8ef8d9801aec40654c955ff941a3205859603 (patch)
treee0d71055e8c741e105b89616cd4255219c581621 /iced_builder/src/main.rs
parentfeat: disable appending to container if it already has children (diff)
downloadiced-builder-75b8ef8d9801aec40654c955ff941a3205859603.tar.gz
test: remove some unneeded printlns
Diffstat (limited to '')
-rw-r--r--iced_builder/src/main.rs8
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);