sway

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

commit 88317b59ce1d8546ef52a897a226fe62b516d059
parent f23588de3c7085830614f6764a5c0cd262538afd
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Mon,  8 Oct 2018 23:27:19 +1000

Use current state when rendering transient containers

Diffstat:
Msway/desktop/render.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/sway/desktop/render.c b/sway/desktop/render.c @@ -962,8 +962,9 @@ void output_render(struct sway_output *output, struct timespec *when, fullscreen_con->current.focused); } - for (int i = 0; i < workspace->floating->length; ++i) { - struct sway_container *floater = workspace->floating->items[i]; + for (int i = 0; i < workspace->current.floating->length; ++i) { + struct sway_container *floater = + workspace->current.floating->items[i]; if (container_is_transient_for(floater, fullscreen_con)) { render_floating_container(output, damage, floater); }