Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronan Pigott committed Aug 4, 2020
1 parent b586d50 commit 96042b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions sway/tree/container.c
Expand Up @@ -980,8 +980,7 @@ static void set_fullscreen_iterator(struct sway_container *con, void *data) {
con->view->impl->set_fullscreen(con->view, *enable);
if (con->view->foreign_toplevel) {
wlr_foreign_toplevel_handle_v1_set_fullscreen(
con->view->foreign_toplevel, *enable
);
con->view->foreign_toplevel, *enable);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion sway/tree/view.c
Expand Up @@ -678,7 +678,7 @@ static void handle_foreign_destroy(
wl_list_remove(&view->foreign_activate_request.link);
wl_list_remove(&view->foreign_fullscreen_request.link);
wl_list_remove(&view->foreign_close_request.link);
wl_list_remove(&listener->link);
wl_list_remove(&view->foreign_destroy.link);
}

void view_map(struct sway_view *view, struct wlr_surface *wlr_surface,
Expand Down

0 comments on commit 96042b1

Please sign in to comment.