aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/output.c')
-rw-r--r--sway/tree/output.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/sway/tree/output.c b/sway/tree/output.c
index 9d523997..632501e1 100644
--- a/sway/tree/output.c
+++ b/sway/tree/output.c
@@ -65,7 +65,14 @@ void output_enable(struct sway_output *output, struct output_config *oc) {
65 return; 65 return;
66 } 66 }
67 struct wlr_output *wlr_output = output->wlr_output; 67 struct wlr_output *wlr_output = output->wlr_output;
68 size_t len = sizeof(output->layers) / sizeof(output->layers[0]);
69 for (size_t i = 0; i < len; ++i) {
70 wl_list_init(&output->layers[i]);
71 }
72 wl_signal_init(&output->events.destroy);
73
68 output->enabled = true; 74 output->enabled = true;
75 apply_output_config(oc, output);
69 list_add(root->outputs, output); 76 list_add(root->outputs, output);
70 77
71 output->lx = wlr_output->lx; 78 output->lx = wlr_output->lx;
@@ -91,14 +98,6 @@ void output_enable(struct sway_output *output, struct output_config *oc) {
91 ipc_event_workspace(NULL, ws, "init"); 98 ipc_event_workspace(NULL, ws, "init");
92 } 99 }
93 100
94 size_t len = sizeof(output->layers) / sizeof(output->layers[0]);
95 for (size_t i = 0; i < len; ++i) {
96 wl_list_init(&output->layers[i]);
97 }
98 wl_signal_init(&output->events.destroy);
99
100 apply_output_config(oc, output);
101
102 input_manager_configure_xcursor(); 101 input_manager_configure_xcursor();
103 102
104 wl_signal_add(&wlr_output->events.mode, &output->mode); 103 wl_signal_add(&wlr_output->events.mode, &output->mode);