This commit is contained in:
2025-11-11 14:34:56 -05:00
parent deaf730901
commit afabdc52a2

View File

@@ -10,7 +10,7 @@ pub trait Widget: Any {
} }
impl Widget for () { impl Widget for () {
fn draw(&mut self, painter: &mut Painter) {} fn draw(&mut self, _: &mut Painter) {}
} }
pub struct WidgetTag; pub struct WidgetTag;