cursor finally working properly and removed from render_text

This commit is contained in:
iris committed 2025-09-15 20:30:26 -04:00
1 parent 9d659b6afd
commit 2700c31c13
15 files changed
+110 -118

No files matched your search

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