Merge pull request #2483 from RyanDwyer/floating-emit-reparent

Send enter/leave events for floating views
This commit is contained in:
Drew DeVault 2018-08-19 22:06:09 -04:00 committed by GitHub
commit 08a69f267a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 107 additions and 98 deletions

View file

@ -195,6 +195,9 @@ static void transaction_apply(struct sway_transaction *transaction) {
}
container->instruction = NULL;
if (container->type == C_CONTAINER || container->type == C_VIEW) {
container_discover_outputs(container);
}
}
}