Keep view fullscreened when moving to another workspace.

container_handle_fullscreen_reparent() must be called *after* setting
the container's new parent.
This commit is contained in:
Ryan Dwyer 2018-04-20 09:01:52 +10:00
parent 7434c52421
commit 34429a3605
1 changed files with 1 additions and 1 deletions

View File

@ -150,8 +150,8 @@ void container_add_child(struct sway_container *parent,
parent, parent->type, parent->width, parent->height);
struct sway_container *old_parent = child->parent;
list_add(parent->children, child);
container_handle_fullscreen_reparent(child, old_parent);
child->parent = parent;
container_handle_fullscreen_reparent(child, old_parent);
}
struct sway_container *container_remove_child(struct sway_container *child) {