diff options
author | mwenzkowski <29407878+mwenzkowski@users.noreply.github.com> | 2018-10-26 22:53:45 +0200 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-11-01 08:15:03 -0400 |
commit | cd0bae80b6f1cc27ffff47618b4332449468134c (patch) | |
tree | 82138b6232e8da790df8242984aa4e87f475a5c9 /sway/tree | |
parent | 8ad06f0ec554da0ded551fc1b83f9cd0b3fa2a27 (diff) |
Fix #2992
Move a function call, such that data it depends on is initialized before.
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/output.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/tree/output.c b/sway/tree/output.c index b84053d9..2704920d 100644 --- a/sway/tree/output.c +++ b/sway/tree/output.c @@ -72,7 +72,6 @@ void output_enable(struct sway_output *output, struct output_config *oc) { wl_signal_init(&output->events.destroy); output->enabled = true; - apply_output_config(oc, output); list_add(root->outputs, output); output->lx = wlr_output->lx; @@ -98,6 +97,9 @@ void output_enable(struct sway_output *output, struct output_config *oc) { ipc_event_workspace(NULL, ws, "init"); } + + apply_output_config(oc, output); + input_manager_configure_xcursor(); wl_signal_add(&wlr_output->events.mode, &output->mode); |