summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-08-26 10:50:02 -0400
committerLibravatar GitHub <noreply@github.com>2018-08-26 10:50:02 -0400
commit10c2c09cf67021e0e3a3cb4e733841fed1f8eaa9 (patch)
treea78b580f6fe08dda7a94633e47c31c717e190c9c /include
parentMerge pull request #2515 from RyanDwyer/remove-layout-file (diff)
parentAdd comment for sway_root.all_outputs (diff)
downloadsway-10c2c09cf67021e0e3a3cb4e733841fed1f8eaa9.tar.gz
sway-10c2c09cf67021e0e3a3cb4e733841fed1f8eaa9.tar.zst
sway-10c2c09cf67021e0e3a3cb4e733841fed1f8eaa9.zip
Merge pull request #2513 from RyanDwyer/rename-root-outputs
Rename sway_root.outputs to sway_root.all_outputs
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/root.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sway/tree/root.h b/include/sway/tree/root.h
index ee4bd836..ec6516c9 100644
--- a/include/sway/tree/root.h
+++ b/include/sway/tree/root.h
@@ -21,7 +21,8 @@ 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 // Includes disabled outputs
25 struct wl_list all_outputs; // sway_output::link
25 26
26 list_t *scratchpad; // struct sway_container 27 list_t *scratchpad; // struct sway_container
27 list_t *saved_workspaces; // For when there's no connected outputs 28 list_t *saved_workspaces; // For when there's no connected outputs