mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 04:45:58 +01:00
wlr_idle: Handle inert seats
This commit is contained in:
parent
f988a75a80
commit
126222884d
1 changed files with 3 additions and 0 deletions
|
@ -165,6 +165,9 @@ static void create_idle_timer(struct wl_client *client,
|
|||
}
|
||||
wl_resource_set_implementation(resource, &idle_timeout_impl,
|
||||
NULL, handle_timer_resource_destroy);
|
||||
if (client_seat == NULL) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!create_timer(idle, client_seat->seat, timeout, resource)) {
|
||||
wl_resource_post_no_memory(resource);
|
||||
|
|
Loading…
Reference in a new issue