sway: extensions: only unlock if lock_surfaces.length == 0

When destroying lock surfaces, we really should only unlock a
desktop_shell if the set of lock surfaces has dropped to zero (since
callers need to do a set_lock_surface for every output).

Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
This commit is contained in:
Aleksa Sarai 2016-12-26 19:23:07 +11:00
parent 36e48fcf8d
commit 29a535aae4
No known key found for this signature in database
GPG Key ID: 4A7BE7BF70DE9B9F
1 changed files with 3 additions and 1 deletions

View File

@ -65,10 +65,12 @@ void lock_surface_destructor(struct wl_resource *resource) {
if (surface == resource) {
list_del(desktop_shell.lock_surfaces, i);
arrange_windows(&root_container, -1, -1);
desktop_shell.is_locked = false;
break;
}
}
if (desktop_shell.lock_surfaces->length == 0) {
desktop_shell.is_locked = false;
}
}
static void set_background(struct wl_client *client, struct wl_resource *resource,