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

Fix rendering of nested tabs
This commit is contained in:
Brian Ashworth 2018-08-29 00:47:46 -04:00 committed by GitHub
commit 5f6dcffe47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}