sway

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

commit 5f6dcffe473cf14500fec94964ceeace0f8922bb
parent ed775103c8bc68db8423eeac179492aeb6bcdedb
Author: Brian Ashworth <RedSoxFan@users.noreply.github.com>
Date:   Wed, 29 Aug 2018 00:47:46 -0400

Merge pull request #2536 from RyanDwyer/fix-nested-tabs

Fix rendering of nested tabs
Diffstat:
Msway/desktop/transaction.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c @@ -126,7 +126,7 @@ static void copy_pending_state(struct sway_container *container, // Set focused_inactive_child to the direct tiling child struct sway_container *focus = seat_get_focus_inactive_tiling(seat, container); - if (focus && focus->type == C_CONTAINER) { + if (focus && focus->type > C_WORKSPACE) { while (focus->parent->type != C_WORKSPACE) { focus = focus->parent; }