diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-02-25 13:16:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-25 13:16:35 -0500 |
commit | 3296365ce591ae4ba115befa8134bc2526b36710 (patch) | |
tree | e1b7a73b6d86e69b356bc8791a0b0996fa2842ad /rootston/wl_shell.c | |
parent | 7da653bbb4569d41ce1a46c97e3b10c675f73741 (diff) | |
parent | 202a728ee9a0e7dbfbcc7e51e060a2a9a5f09847 (diff) |
Merge pull request #659 from agx/alpha
Make wlr_render_with_matrix use alpha
Diffstat (limited to 'rootston/wl_shell.c')
-rw-r--r-- | rootston/wl_shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/wl_shell.c b/rootston/wl_shell.c index 44a65cf5..899df1c6 100644 --- a/rootston/wl_shell.c +++ b/rootston/wl_shell.c @@ -227,7 +227,7 @@ void handle_wl_shell_surface(struct wl_listener *listener, void *data) { roots_surface->surface_commit.notify = handle_surface_commit; wl_signal_add(&surface->surface->events.commit, &roots_surface->surface_commit); - struct roots_view *view = calloc(1, sizeof(struct roots_view)); + struct roots_view *view = view_create(); if (!view) { free(roots_surface); return; |