diff --git a/native/src/widget/toggler.rs b/native/src/widget/toggler.rs index 4035276c..e3fb27fd 100644 --- a/native/src/widget/toggler.rs +++ b/native/src/widget/toggler.rs @@ -174,6 +174,10 @@ where event::Status::Ignored } } + Event::Touch(x) => { + eprintln!("{:?}", x); + event::Status::Ignored + } _ => event::Status::Ignored, } }