proper frame events

This commit is contained in:
Ferdinand Schober
2022-09-19 18:46:32 +02:00
parent 2cd522044a
commit ed3882df57
3 changed files with 16 additions and 7 deletions

View File

@@ -364,6 +364,9 @@ impl Dispatch<wl_pointer::WlPointer, ()> for App {
let e = protocol::Event::Axis { t: time, a: (axis.into_result().unwrap()), v: value };
app.connection.send_event(&e);
}
wl_pointer::Event::Frame {} => {
app.connection.send_event(&protocol::Event::Frame{});
}
_ => (),
}
}