diff options
author | Simon Ser <contact@emersion.fr> | 2020-02-11 14:09:15 +0100 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2020-02-11 20:52:02 -0500 |
commit | 5e9008046846093140eeaf7187150b04670fbc94 (patch) | |
tree | a103dededf3b4bb700992bed2552f8fd90368f2f | |
parent | 555b0d408706a4eddc75d04f58f7f1e84dc409e8 (diff) |
Call apply_output_config instead of output_enable
apply_output_config will call output_enable if necessary.
This fixes a lone wlr_output_enable call (without a matching
wlr_output_commit call) which was a no-op.
-rw-r--r-- | sway/desktop/output.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c index afe43d2c..ec662a8c 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -896,11 +896,7 @@ void handle_new_output(struct wl_listener *listener, void *data) { output_repaint_timer_handler, output); struct output_config *oc = find_output_config(output); - if (!oc || oc->enabled) { - output_enable(output, oc); - } else { - wlr_output_enable(output->wlr_output, false); - } + apply_output_config(oc, output); free_output_config(oc); transaction_commit_dirty(); |