summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-08-25 19:29:04 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-08-25 23:41:11 +1000
commit2e7401772e740487bed27fc07c4d83398480ae6a (patch)
tree75f420b4769b4264f095f60d4998146b23224bb6 /include
parentMerge pull request #2510 from RyanDwyer/relocate-layout-functions (diff)
downloadsway-2e7401772e740487bed27fc07c4d83398480ae6a.tar.gz
sway-2e7401772e740487bed27fc07c4d83398480ae6a.tar.zst
sway-2e7401772e740487bed27fc07c4d83398480ae6a.zip
Rename sway_root.outputs to sway_root.all_outputs
This list includes disabled outputs. When sway_container is demoted, we'll need to store the root's children (ie. enabled outputs) in the sway_root. It makes sense to put these in a list called `outputs`, so I'm renaming the existing list in advance.
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/root.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/root.h b/include/sway/tree/root.h
index ee4bd836..f9d83874 100644
--- a/include/sway/tree/root.h
+++ b/include/sway/tree/root.h
@@ -21,7 +21,7 @@ struct sway_root {
21 21
22 struct wlr_texture *debug_tree; 22 struct wlr_texture *debug_tree;
23 23
24 struct wl_list outputs; // sway_output::link 24 struct wl_list all_outputs; // sway_output::link
25 25
26 list_t *scratchpad; // struct sway_container 26 list_t *scratchpad; // struct sway_container
27 list_t *saved_workspaces; // For when there's no connected outputs 27 list_t *saved_workspaces; // For when there's no connected outputs