devdraw/wayland.c: prevent divide-by-zero in scroll repeat
This commit is contained in:
parent
851c3799ad
commit
0aa048e818
1 changed files with 2 additions and 1 deletions
|
|
@ -448,8 +448,9 @@ static void wl_callback_done(void *data, struct wl_callback *wl_callback, uint32
|
||||||
wl->repeat_scroll_count--;
|
wl->repeat_scroll_count--;
|
||||||
if (wl->repeat_scroll_count == 0) {
|
if (wl->repeat_scroll_count == 0) {
|
||||||
wl->repeat_scroll_button = 0;
|
wl->repeat_scroll_button = 0;
|
||||||
|
} else {
|
||||||
|
wl->repeat_scroll_next_ms = time + scroll_repeat_ms/wl->repeat_scroll_count;
|
||||||
}
|
}
|
||||||
wl->repeat_scroll_next_ms = time + scroll_repeat_ms/wl->repeat_scroll_count;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
qunlock(&wayland_lock);
|
qunlock(&wayland_lock);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue