diff --git a/testwl/src/lib.rs b/testwl/src/lib.rs index 14aaa6d..3a11e06 100644 --- a/testwl/src/lib.rs +++ b/testwl/src/lib.rs @@ -92,7 +92,7 @@ pub struct Toplevel { pub states: Vec, pub closed: bool, pub title: Option, - pub app_id: Option + pub app_id: Option, } #[derive(Debug, PartialEq, Eq)] @@ -501,7 +501,6 @@ impl Dispatch for State { unreachable!(); }; toplevel.app_id = app_id.into(); - } other => todo!("unhandled request {other:?}"), } @@ -531,7 +530,7 @@ impl Dispatch for State { states: Vec::new(), closed: false, title: None, - app_id: None + app_id: None, }; let data = state.surfaces.get_mut(surface_id).unwrap(); data.role = Some(SurfaceRole::Toplevel(t)); @@ -838,6 +837,7 @@ impl Dispatch for State { .surfaces .remove(&SurfaceId(resource.id().protocol_id())); } + SetInputRegion { .. } => {} other => todo!("unhandled request {other:?}"), } }