1
0
Fork 0
forked from wry/wry

all: track serials as u64 internally

This commit is contained in:
Julian Orth 2024-10-17 15:20:46 +02:00
parent 437c6b0596
commit c987fdb58d
28 changed files with 123 additions and 119 deletions

View file

@ -250,7 +250,7 @@ pub trait Node: 'static {
time_usec: u64,
button: u32,
state: KeyState,
serial: u32,
serial: u64,
) {
let _ = seat;
let _ = time_usec;
@ -322,7 +322,7 @@ pub trait Node: 'static {
let _ = dnd;
}
fn node_on_dnd_enter(&self, dnd: &Dnd, x: Fixed, y: Fixed, serial: u32) {
fn node_on_dnd_enter(&self, dnd: &Dnd, x: Fixed, y: Fixed, serial: u64) {
let _ = dnd;
let _ = x;
let _ = y;