mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-02-28 01:41:07 -05:00
backend, virtual_keyboard: set the time_nsec field of relevant events
Backends modified: libinput (with microsecond precision), X11 (with millisecond precision), RDP (with millisecond precision), and Wayland (with nanosecond precision if the host server supports the input-timestamps protocol, otherwise millisecond precision); and virtual-keyboard protocol (with millisecond precision).
This commit is contained in:
parent
79ed410be4
commit
e617da0378
9 changed files with 172 additions and 38 deletions
|
|
@ -85,6 +85,7 @@ static void virtual_keyboard_key(struct wl_client *client,
|
|||
}
|
||||
struct wlr_event_keyboard_key event = {
|
||||
.time_msec = time,
|
||||
.time_nsec = time * 1000000,
|
||||
.keycode = key,
|
||||
.update_state = false,
|
||||
.state = state,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue