compositor: Schedule a new render after commit

This commit is contained in:
Victoria Brekenfeld 2022-08-02 11:54:14 +02:00
parent 7708cdc1a2
commit 56e6ad8953

View file

@ -206,6 +206,11 @@ impl CompositorHandler for State {
}) {
layer_map_for_output(output).arrange(dh);
}
// schedule a new render
for output in self.common.shell.outputs_for_surface(surface) {
self.backend.schedule_render(&self.common.event_loop_handle, &output);
}
}
}