aboutsummaryrefslogtreecommitdiff
path: root/src/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/input.rs')
-rw-r--r--src/input.rs10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/input.rs b/src/input.rs
index ad182645..f2a91082 100644
--- a/src/input.rs
+++ b/src/input.rs
@@ -15,7 +15,11 @@ enum InputAction {
}
impl Niri {
- pub fn process_input_event<I: InputBackend>(&mut self, event: InputEvent<I>) {
+ pub fn process_input_event<I: InputBackend>(
+ &mut self,
+ change_vt: &mut dyn FnMut(i32),
+ event: InputEvent<I>,
+ ) {
trace!("process_input_event");
match event {
@@ -45,7 +49,9 @@ impl Niri {
info!("quitting because Esc was pressed");
self.stop_signal.stop()
}
- InputAction::ChangeVt(vt) => todo!(),
+ InputAction::ChangeVt(vt) => {
+ (*change_vt)(vt);
+ }
}
}
}