Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
wlroots-based Wayland compositor with virtual outputs and physical cursor continuity.
Originally forked from dwl.

`LOC: 7275 total, 2798 vwl.c`
`LOC: 7282 total, 2798 vwl.c`

## Features

Expand Down
9 changes: 9 additions & 0 deletions share.c
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,15 @@ imagesourcedestroy(struct wl_listener *listener, void *data)
wl_list_remove(&c->image_capture_source_destroy.link);
wl_list_init(&c->image_capture_source_destroy.link);
c->image_capture_source = NULL;

if (!c->mon || !client_surface(c) || !client_surface(c)->mapped)
return;

if (VISIBLEON(c, c->mon)) {
wlr_scene_node_set_enabled(&c->scene->node, 1);
client_set_suspended(c, 0);
}
wlr_output_schedule_frame(c->mon->wlr_output);
}

static void
Expand Down
Loading