refcount ids and delete unused

This commit is contained in:
iris committed 2025-08-16 19:15:21 -04:00
1 parent b2acbcc189
commit 368826fe05
8 files changed
+253 -173

No files matched your search

+1 -1
View File
@@ -7,7 +7,7 @@ pub struct Stack {
impl<Ctx> Widget<Ctx> for Stack {
fn draw(&self, painter: &mut crate::Painter<Ctx>) {
for child in &self.children {
painter.draw(child);
painter.draw_within(child, painter.region);
}
}
}