diff options
| author | Drew DeVault <sir@cmpwn.com> | 2018-10-28 12:42:27 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-28 12:42:27 +0100 | 
| commit | 09f3f7b75ffb5e73fc28f889d27900e896f8396f (patch) | |
| tree | e328a641a5bcaa67a88a2c47be4994ee869c08b8 /sway/tree | |
| parent | aa21d1b86719d76f8236aa7407f75b95f3922ad2 (diff) | |
| parent | e4df675840fdef182b5589a81898c7b59ac00aae (diff) | |
| download | sway-09f3f7b75ffb5e73fc28f889d27900e896f8396f.tar.xz | |
Merge pull request #3011 from Emantor/fix/2922
output: initialize layers before usage in apply_config
Diffstat (limited to 'sway/tree')
| -rw-r--r-- | sway/tree/output.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/sway/tree/output.c b/sway/tree/output.c index e5794b8a..632501e1 100644 --- a/sway/tree/output.c +++ b/sway/tree/output.c @@ -65,6 +65,12 @@ void output_enable(struct sway_output *output, struct output_config *oc) {  		return;  	}  	struct wlr_output *wlr_output = output->wlr_output; +	size_t len = sizeof(output->layers) / sizeof(output->layers[0]); +	for (size_t i = 0; i < len; ++i) { +		wl_list_init(&output->layers[i]); +	} +	wl_signal_init(&output->events.destroy); +  	output->enabled = true;  	apply_output_config(oc, output);  	list_add(root->outputs, output); @@ -92,12 +98,6 @@ void output_enable(struct sway_output *output, struct output_config *oc) {  		ipc_event_workspace(NULL, ws, "init");  	} -	size_t len = sizeof(output->layers) / sizeof(output->layers[0]); -	for (size_t i = 0; i < len; ++i) { -		wl_list_init(&output->layers[i]); -	} -	wl_signal_init(&output->events.destroy); -  	input_manager_configure_xcursor();  	wl_signal_add(&wlr_output->events.mode, &output->mode); | 
