shell: remove remnants of screensaver surface list
The list became stale probably when the lock_layer was introduced. Now
one less (ab)user of weston_surface::link.
Also add a comment on screensaver_configure(), that it is (and has been)
broken for pre-started screensavers.
Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
diff --git a/src/shell.c b/src/shell.c
index 47882a5..dcbabf3 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -124,7 +124,6 @@
char *path;
int duration;
struct wl_resource *binding;
- struct wl_list surfaces;
struct weston_process process;
} screensaver;
@@ -2257,12 +2256,8 @@
static void
resume_desktop(struct desktop_shell *shell)
{
- struct weston_surface *surface;
struct workspace *ws = get_current_workspace(shell);
- wl_list_for_each(surface, &shell->screensaver.surfaces, link)
- weston_surface_unmap(surface);
-
terminate_screensaver(shell);
wl_list_remove(&shell->lock_layer.link);
@@ -3155,6 +3150,7 @@
{
struct desktop_shell *shell = surface->private;
+ /* XXX: starting weston-screensaver beforehand does not work */
if (!shell->locked)
return;
@@ -3846,7 +3842,6 @@
ec->shell_interface.move = surface_move;
ec->shell_interface.resize = surface_resize;
- wl_list_init(&shell->screensaver.surfaces);
wl_list_init(&shell->input_panel.surfaces);
weston_layer_init(&shell->fullscreen_layer, &ec->cursor_layer.link);