diff options
Diffstat (limited to 'sway/desktop')
-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(); |