From ddead86366a060d8f07df73d19ada874e6be0ece Mon Sep 17 00:00:00 2001 From: Jente Hidskes Date: Mon, 24 Feb 2020 20:07:36 +0100 Subject: [PATCH] output: set pointer to cg_output in wlr_output->data This will be used later in the layer shell implementation. --- output.c | 1 + 1 file changed, 1 insertion(+) diff --git a/output.c b/output.c index 4e13d54..dc3272f 100644 --- a/output.c +++ b/output.c @@ -190,6 +190,7 @@ handle_new_output(struct wl_listener *listener, void *data) } output->wlr_output = wlr_output; + wlr_output->data = output; output->server = server; wl_list_insert(&server->outputs, &output->link);