aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-rw-r--r--sway/container.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sway/container.c b/sway/container.c
index 63374f9e..444f85fd 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -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);
}
}