From 94985146ea00b40f72cd6afaa191fd92a46e4fd3 Mon Sep 17 00:00:00 2001
From: mwenzkowski <29407878+mwenzkowski@users.noreply.github.com>
Date: Fri, 26 Oct 2018 22:53:45 +0200
Subject: [PATCH] Fix #2992

Move a function call, such that data it depends on is initialized before.
---
 sway/tree/output.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sway/tree/output.c b/sway/tree/output.c
index e5794b8a..9d523997 100644
--- a/sway/tree/output.c
+++ b/sway/tree/output.c
@@ -66,7 +66,6 @@ void output_enable(struct sway_output *output, struct output_config *oc) {
 	}
 	struct wlr_output *wlr_output = output->wlr_output;
 	output->enabled = true;
-	apply_output_config(oc, output);
 	list_add(root->outputs, output);
 
 	output->lx = wlr_output->lx;
@@ -98,6 +97,8 @@ void output_enable(struct sway_output *output, struct output_config *oc) {
 	}
 	wl_signal_init(&output->events.destroy);
 
+	apply_output_config(oc, output);
+
 	input_manager_configure_xcursor();
 
 	wl_signal_add(&wlr_output->events.mode, &output->mode);