diff options
author | Brian Ashworth <RedSoxFan@users.noreply.github.com> | 2018-10-26 19:18:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-26 19:18:00 -0400 |
commit | b63669a2a04027a029e7332ca4e7670457f59fd2 (patch) | |
tree | d1b30ac2a954e6d2456ed038097b5f658c277fe6 /sway/tree | |
parent | b52e005346507d8999395b235009b67287b1b492 (diff) | |
parent | 94985146ea00b40f72cd6afaa191fd92a46e4fd3 (diff) |
Merge pull request #2993 from mwenzkowski/fix-2992
Fix #2992
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/output.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |