1
0
Fork 0
forked from wry/wry

metal,config: allow enabling tap-to-click

This commit is contained in:
Julian Orth 2022-06-01 14:29:56 +02:00
parent 59445dd875
commit 6cc97ee56e
13 changed files with 293 additions and 4 deletions

View file

@ -288,6 +288,18 @@ pub enum ClientMessage<'a> {
seat: Seat,
size: i32,
},
SetTapEnabled {
device: InputDevice,
enabled: bool,
},
SetDragEnabled {
device: InputDevice,
enabled: bool,
},
SetDragLockEnabled {
device: InputDevice,
enabled: bool,
},
}
#[derive(Encode, Decode, Debug)]