Merge pull request #457 from mikkeloscar/move-view-fix

Fix rendering of view when moving to new workspace
This commit is contained in:
Drew DeVault 2016-01-23 16:48:00 -05:00
commit fe35ea633a
1 changed files with 1 additions and 3 deletions

View File

@ -721,9 +721,7 @@ void update_visibility_output(swayc_t *container, wlc_handle output) {
if (container->type == C_VIEW) {
wlc_view_set_output(container->handle, output);
wlc_view_set_mask(container->handle, container->visible ? VISIBLE : 0);
if (container->visible) {
wlc_view_bring_to_front(container->handle);
} else {
if (!container->visible) {
wlc_view_send_to_back(container->handle);
}
}