aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
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 /sway/desktop/output.c
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 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 35fce1a6..bbebe453 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -556,7 +556,7 @@ void handle_new_output(struct wl_listener *listener, void *data) {
556 wl_signal_add(&wlr_output->events.destroy, &output->destroy); 556 wl_signal_add(&wlr_output->events.destroy, &output->destroy);
557 output->destroy.notify = handle_destroy; 557 output->destroy.notify = handle_destroy;
558 558
559 wl_list_insert(&root_container.sway_root->outputs, &output->link); 559 wl_list_insert(&root_container.sway_root->all_outputs, &output->link);
560 560
561 if (!wl_list_empty(&wlr_output->modes)) { 561 if (!wl_list_empty(&wlr_output->modes)) {
562 struct wlr_output_mode *mode = 562 struct wlr_output_mode *mode =