sway

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

commit cc4da245a8e4a746ebd379ca8dd6cc3b33ded8e4
parent 143b528f71ea71393368815eecebf900ff45cf9d
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Tue, 17 Apr 2018 11:06:03 +1000

Fix views unmapping their own fullscreen windows.

Diffstat:
Msway/tree/view.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sway/tree/view.c b/sway/tree/view.c @@ -104,11 +104,6 @@ void view_set_fullscreen(struct sway_view *view, bool fullscreen) { } void view_close(struct sway_view *view) { - if (view->is_fullscreen) { - struct sway_container *ws = container_parent(view->swayc, C_WORKSPACE); - ws->sway_workspace->fullscreen = NULL; - } - if (view->impl->close) { view->impl->close(view); } @@ -232,6 +227,11 @@ void view_unmap(struct sway_view *view) { wl_signal_emit(&view->events.unmap, view); + if (view->is_fullscreen) { + struct sway_container *ws = container_parent(view->swayc, C_WORKSPACE); + ws->sway_workspace->fullscreen = NULL; + } + view_damage(view, true); wl_list_remove(&view->surface_new_subsurface.link);