devdraw/wayland.c: prevent divide-by-zero in scroll repeat

This commit is contained in:
ylh 2024-10-27 22:32:09 -07:00
parent 851c3799ad
commit 0aa048e818

View file

@ -448,9 +448,10 @@ static void wl_callback_done(void *data, struct wl_callback *wl_callback, uint32
wl->repeat_scroll_count--;
if (wl->repeat_scroll_count == 0) {
wl->repeat_scroll_button = 0;
}
} else {
wl->repeat_scroll_next_ms = time + scroll_repeat_ms/wl->repeat_scroll_count;
}
}
qunlock(&wayland_lock);
if (repeat_rune) {