remove debug prints

This commit is contained in:
2025-11-14 14:44:16 -05:00
parent 182b1d4729
commit 448f348356

View File

@@ -84,14 +84,6 @@ impl<'a> PainterCtx<'a> {
return;
};
if self.widgets.label(&id) == "debug* area" {
if let Some((id, _)) = &active.resize {
println!("RESIZE: {:?}", self.widgets.label(id));
} else {
println!("RESIZE: NONE");
}
}
if let Some((rid, size)) = active.resize {
let checked = &mut HashMap::default();
let mut ctx = SizeCtx {
@@ -113,18 +105,10 @@ impl<'a> PainterCtx<'a> {
}
}
if self.widgets.label(&id) == "debug* area" {
println!("redraw proceeding");
}
let Some(active) = self.remove(id) else {
return;
};
if self.widgets.label(&id) == "debug* area" {
println!("redraw actually");
}
self.draw_inner(
active.layer,
id,