diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-06-09 10:50:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-09 10:50:34 -0700 |
commit | 867fb6aedbbe4cd1c7f4817848682609e8489880 (patch) | |
tree | 3b62f78586a18a17b577c82d48f7e02b0becfaa9 /sway/tree/layout.c | |
parent | d9fc381e0292519cccf2df6ea77a3356a2e621c7 (diff) | |
parent | cfd02918c0d5dc539bc8858c7d0fab378145b38c (diff) |
Merge pull request #2124 from emersion/drag-icons
Render drag icons
Diffstat (limited to 'sway/tree/layout.c')
-rw-r--r-- | sway/tree/layout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c index a8aba618..d1ad044d 100644 --- a/sway/tree/layout.c +++ b/sway/tree/layout.c @@ -37,6 +37,7 @@ void layout_init(void) { root_container.sway_root->output_layout = wlr_output_layout_create(); wl_list_init(&root_container.sway_root->outputs); wl_list_init(&root_container.sway_root->xwayland_unmanaged); + wl_list_init(&root_container.sway_root->drag_icons); wl_signal_init(&root_container.sway_root->events.new_container); root_container.sway_root->output_layout_change.notify = |