diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-08-26 10:50:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-26 10:50:02 -0400 |
commit | 10c2c09cf67021e0e3a3cb4e733841fed1f8eaa9 (patch) | |
tree | a78b580f6fe08dda7a94633e47c31c717e190c9c /sway/tree/root.c | |
parent | df7083a2d0842a3985747770774075a8f5ecdaef (diff) | |
parent | 1e024b91fab9df3458c2fd7535e8bbe2a37c0997 (diff) |
Merge pull request #2513 from RyanDwyer/rename-root-outputs
Rename sway_root.outputs to sway_root.all_outputs
Diffstat (limited to 'sway/tree/root.c')
-rw-r--r-- | sway/tree/root.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/root.c b/sway/tree/root.c index 5602f0a0..2dd8f9f2 100644 --- a/sway/tree/root.c +++ b/sway/tree/root.c @@ -32,7 +32,7 @@ void root_create(void) { root_container.sway_root = calloc(1, sizeof(*root_container.sway_root)); 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->all_outputs); #ifdef HAVE_XWAYLAND wl_list_init(&root_container.sway_root->xwayland_unmanaged); #endif |