sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit f1f4791a3b2da30175b518b531927955283d47c1
parent a97b325b26d64db1ca695c58fa729797f1a1e0a0
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue, 26 Jan 2016 18:33:50 -0500

Fix returning to sway after swaylock completes

Diffstat:
Msway/extensions.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/sway/extensions.c b/sway/extensions.c @@ -106,6 +106,7 @@ static void set_lock_surface(struct wl_client *client, struct wl_resource *resou struct wl_resource *_output, struct wl_resource *surface) { swayc_t *output = swayc_by_handle(wlc_handle_from_wl_output_resource(_output)); swayc_t *view = swayc_by_handle(wlc_handle_from_wl_surface_resource(surface)); + sway_log(L_DEBUG, "Setting lock surface to %p", view); if (view && output) { swayc_t *workspace = output->focused; if (!swayc_is_child_of(view, workspace)) { @@ -116,6 +117,8 @@ static void set_lock_surface(struct wl_client *client, struct wl_resource *resou desktop_shell.is_locked = true; set_focused_container(view); arrange_windows(view, -1, -1); + list_add(desktop_shell.lock_surfaces, surface); + wl_resource_set_destructor(surface, lock_surface_destructor); } else { sway_log(L_ERROR, "Attempted to set lock surface to non-view"); }