Merge pull request #2390 from emersion/fix-fullscreen-segfault

Fix segfault with fullscreen
This commit is contained in:
Drew DeVault 2018-07-30 14:54:08 -04:00 committed by GitHub
commit f19add2702
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -317,8 +317,9 @@ static void send_frame_done(struct sway_output *output, struct timespec *when) {
struct sway_container *workspace = output_get_active_workspace(output);
if (workspace->current.ws_fullscreen) {
if (workspace->current.ws_fullscreen->type == C_VIEW) {
send_frame_done_container_iterator(
workspace->current.ws_fullscreen, when);
output_view_for_each_surface(output,
workspace->current.ws_fullscreen->sway_view,
send_frame_done_iterator, when);
} else {
send_frame_done_container(output, workspace->current.ws_fullscreen,
when);