fix clippy

This commit is contained in:
witelokk 2024-02-27 21:40:54 +03:00
parent 938a965f67
commit e2c9de0b03

View file

@ -233,12 +233,11 @@ impl Dispatch<wl_registry::WlRegistry, GlobalListContents> for WaylandClientStat
name,
interface,
version: _,
} => match interface.as_str() {
"wl_seat" => {
} => {
if interface.as_str() == "wl_seat" {
registry.bind::<wl_seat::WlSeat, _, _>(name, 4, qh, ());
}
_ => {}
},
}
wl_registry::Event::GlobalRemove { name: _ } => {}
_ => {}
}