commit 5e9008046846093140eeaf7187150b04670fbc94
parent 555b0d408706a4eddc75d04f58f7f1e84dc409e8
Author: Simon Ser <contact@emersion.fr>
Date: Tue, 11 Feb 2020 14:09:15 +0100
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.
Diffstat:
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git 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();