sway

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

commit e81c26fab910505719745f5eb7060457fd7ba7b0
parent 395ff7a541bccceba1e1f0fc834236b8f1f55d81
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Wed, 22 Aug 2018 08:23:29 +1000

Fix sending fullscreen event to view

Fixes #2504

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

diff --git a/sway/tree/container.c b/sway/tree/container.c @@ -1201,6 +1201,7 @@ void container_set_fullscreen(struct sway_container *container, bool enable) { container_set_fullscreen(workspace->sway_workspace->fullscreen, false); } + set_fullscreen_iterator(container, &enable); container_for_each_child(container, set_fullscreen_iterator, &enable); container->is_fullscreen = enable;