From 5a98dfee0266f33165159b31a996c73d5ff607fb Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 27 Oct 2018 08:55:45 -0400 Subject: [PATCH] Revert "Fix #2992" This reverts commit 94985146ea00b40f72cd6afaa191fd92a46e4fd3. --- sway/tree/output.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sway/tree/output.c b/sway/tree/output.c index 9d523997..e5794b8a 100644 --- a/sway/tree/output.c +++ b/sway/tree/output.c @@ -66,6 +66,7 @@ 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; @@ -97,8 +98,6 @@ 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);