1
0
Fork 0
forked from wry/wry

docs: configure gh-pages deployment

This commit is contained in:
Julian Orth 2022-11-20 11:15:55 +01:00
parent cd47baa934
commit 0697911b7c
4 changed files with 78 additions and 3 deletions

View file

@ -86,21 +86,21 @@ impl InputDevice {
/// Sets whether tap-to-click is enabled for this device.
///
/// See https://wayland.freedesktop.org/libinput/doc/latest/tapping.html
/// See <https://wayland.freedesktop.org/libinput/doc/latest/tapping.html>
pub fn set_tap_enabled(self, enabled: bool) {
get!().set_input_tap_enabled(self, enabled);
}
/// Sets whether tap-and-drag is enabled for this device.
///
/// See https://wayland.freedesktop.org/libinput/doc/latest/tapping.html
/// See <https://wayland.freedesktop.org/libinput/doc/latest/tapping.html>
pub fn set_drag_enabled(self, enabled: bool) {
get!().set_input_drag_enabled(self, enabled);
}
/// Sets whether drag lock is enabled for this device.
///
/// See https://wayland.freedesktop.org/libinput/doc/latest/tapping.html
/// See <https://wayland.freedesktop.org/libinput/doc/latest/tapping.html>
pub fn set_drag_lock_enabled(self, enabled: bool) {
get!().set_input_drag_lock_enabled(self, enabled);
}