From fe608c80ae66d77f826ca077bd1c6a4fa7db3dd6 Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Sun, 31 Jul 2016 21:42:51 -0400 Subject: [PATCH] Update view border when workspace is focused When a workspace is focused, update the borders of all its child containers to be focused to indicate the workspace container is focused. --- sway/focus.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sway/focus.c b/sway/focus.c index 576a5e9b..45ec43e9 100644 --- a/sway/focus.c +++ b/sway/focus.c @@ -168,6 +168,7 @@ bool set_focused_container(swayc_t *c) { } else if (c->type == C_WORKSPACE) { // remove previous focus if view_focus is unlocked if (!locked_view_focus) { + update_container_border(c); wlc_view_focus(0); } }