sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 5a22c0f1c08eddc84a738e8de74dcfab33f41dcf
parent 5886ee156e948b4c7bc338d1035c2e91dc597458
Author: Mikkel Oscar Lyderik <mikkeloscar@gmail.com>
Date:   Sun, 24 Apr 2016 21:54:33 +0200

Don't send invisble view to back

Diffstat:
Msway/container.c | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git 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 {