diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2016-04-24 21:54:33 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2016-04-24 21:54:33 +0200 |
| commit | d78ad2585ba99a565015a4cbd6585e34975b8ac9 (patch) | |
| tree | 25c9030f0b0eb8017848b4b6593182d680935e0f | |
| parent | 0d27aab7fe987463984dc49e6a974c376a35a162 (diff) | |
Don't send invisble view to back
| -rw-r--r-- | sway/container.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sway/container.c b/sway/container.c index 9db81012..d54dfd96 100644 --- a/sway/container.c +++ b/sway/container.c @@ -732,9 +732,6 @@ 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_send_to_back(container->handle); - } } // Update visibility for children else { |
