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.
This commit is contained in:
Simon Ser 2020-02-11 14:09:15 +01:00 committed by Brian Ashworth
parent 555b0d4087
commit 5e90080468
1 changed files with 1 additions and 5 deletions

View File

@ -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();