aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop')
-rw-r--r--sway/desktop/output.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index b4564fac..1e4f196b 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -304,15 +304,14 @@ struct send_frame_done_data {
static void send_frame_done_container_iterator(struct sway_container *con,
void *_data) {
- struct send_frame_done_data *data = _data;
- if (!sway_assert(con->type == C_VIEW, "expected a view")) {
+ if (con->type != C_VIEW) {
return;
}
-
if (!view_is_visible(con->sway_view)) {
return;
}
+ struct send_frame_done_data *data = _data;
output_view_for_each_surface(data->output, con->sway_view,
send_frame_done_iterator, data->when);
}
@@ -323,8 +322,8 @@ static void send_frame_done_container(struct sway_output *output,
.output = output,
.when = when,
};
- container_descendants(con, C_VIEW,
- send_frame_done_container_iterator, &data);
+ output_for_each_container(output->swayc,
+ send_frame_done_container_iterator, &data);
}
static void send_frame_done(struct sway_output *output, struct timespec *when) {