container: set fullscreen mode before attempting focus

This commit is contained in:
Ronan Pigott 2020-12-24 14:43:48 -07:00 committed by Simon Ser
parent 5f1fe33d36
commit d1c4ed1867
1 changed files with 1 additions and 1 deletions

View File

@ -994,6 +994,7 @@ static void container_fullscreen_workspace(struct sway_container *con) {
bool enable = true;
set_fullscreen_iterator(con, &enable);
container_for_each_child(con, set_fullscreen_iterator, &enable);
con->fullscreen_mode = FULLSCREEN_WORKSPACE;
con->saved_x = con->x;
con->saved_y = con->y;
@ -1017,7 +1018,6 @@ static void container_fullscreen_workspace(struct sway_container *con) {
}
}
con->fullscreen_mode = FULLSCREEN_WORKSPACE;
container_end_mouse_operation(con);
ipc_event_window(con, "fullscreen_mode");
}