sway

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

commit fe608c80ae66d77f826ca077bd1c6a4fa7db3dd6
parent d731d6a846ec37e5a3c172fdd14801886d45ff93
Author: Tony Crisci <tony@dubstepdish.com>
Date:   Sun, 31 Jul 2016 21:42:51 -0400

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.

Diffstat:
Msway/focus.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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); } }