From 40772387829736f5a73bc4f97968b2e44b28a333 Mon Sep 17 00:00:00 2001 From: taiyu Date: Sun, 16 Aug 2015 18:59:12 -0700 Subject: sends hidden views to back, visible view to front --- sway/handlers.c | 2 +- sway/layout.c | 2 +- sway/workspace.c | 6 +++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sway/handlers.c b/sway/handlers.c index 0e68a3c8..9ee4f3cb 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -238,8 +238,8 @@ static bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifier } static bool handle_pointer_motion(wlc_handle view, uint32_t time, const struct wlc_origin *origin) { + static wlc_handle prev_view = 0; mouse_origin = *origin; - static wlc_handle prev_view = -1; if (config->focus_follows_mouse && prev_view != view) { focus_pointer(); } diff --git a/sway/layout.c b/sway/layout.c index a6d6fcbb..963bd8dc 100644 --- a/sway/layout.c +++ b/sway/layout.c @@ -237,7 +237,7 @@ void unfocus_all(swayc_t *container) { } void focus_view(swayc_t *view) { - sway_log(L_DEBUG, "Setting focus for %p", view); + sway_log(L_DEBUG, "Setting focus for %p:%ld", view, view->handle); swayc_t *c = view; //Set focus from root to view while (c != &root_container) { diff --git a/sway/workspace.c b/sway/workspace.c index a3238da6..15828658 100644 --- a/sway/workspace.c +++ b/sway/workspace.c @@ -82,10 +82,14 @@ bool workspace_by_name(swayc_t *view, void *data) { void set_mask(swayc_t *view, void *data) { uint32_t *p = data; - if (view->type == C_VIEW) { wlc_view_set_mask(view->handle, *p); } + if (*p == 2) { + wlc_view_bring_to_front(view->handle); + } else { + wlc_view_send_to_back(view->handle); + } view->visible = (*p == 2); } -- cgit v1.2.3-54-g00ecf