backend: add syspath and devnode to input devices
This commit is contained in:
parent
813f87faaa
commit
283e438d1b
9 changed files with 107 additions and 64 deletions
|
|
@ -1177,6 +1177,10 @@ impl InputDevice for XSeatKeyboard {
|
|||
self.0.kb_name.clone()
|
||||
}
|
||||
|
||||
fn dev_t(&self) -> Option<dev_t> {
|
||||
None
|
||||
}
|
||||
|
||||
fn set_tap_enabled(&self, enabled: bool) {
|
||||
let _ = enabled;
|
||||
}
|
||||
|
|
@ -1242,6 +1246,10 @@ impl InputDevice for XSeatMouse {
|
|||
self.0.mouse_name.clone()
|
||||
}
|
||||
|
||||
fn dev_t(&self) -> Option<dev_t> {
|
||||
None
|
||||
}
|
||||
|
||||
fn set_tap_enabled(&self, enabled: bool) {
|
||||
let _ = enabled;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue