From f5fa0c7124dde3438a22550aae017f824d20c93b Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 11 Feb 2020 14:17:33 +0100 Subject: Stop calling apply_output_config from output_enable The only output_enable caller is now apply_output_config. Stop calling apply_output_config from output_enable to simplify the code and avoid the back-and-forth between these two functions. output_enable is now the symmetric of output_disable: it just marks the output as enabled and performs bookkeeping (e.g. creating teh default workspace). It is called from apply_output_config after the output commit, so that it can read the current output state and act accordingly. This change also allows us to avoid an extraneous wlr_output_commit. References: https://github.com/swaywm/sway/issues/4921 --- sway/tree/output.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'sway/tree/output.c') diff --git a/sway/tree/output.c b/sway/tree/output.c index d2ede1f2..6f4146cd 100644 --- a/sway/tree/output.c +++ b/sway/tree/output.c @@ -105,9 +105,9 @@ struct sway_output *output_create(struct wlr_output *wlr_output) { return output; } -bool output_enable(struct sway_output *output, struct output_config *oc) { +void output_enable(struct sway_output *output) { if (!sway_assert(!output->enabled, "output is already enabled")) { - return false; + return; } struct wlr_output *wlr_output = output->wlr_output; size_t len = sizeof(output->layers) / sizeof(output->layers[0]); @@ -116,11 +116,6 @@ bool output_enable(struct sway_output *output, struct output_config *oc) { } output->enabled = true; - if (!apply_output_config(oc, output)) { - output->enabled = false; - return false; - } - output->configured = true; list_add(root->outputs, output); @@ -156,8 +151,6 @@ bool output_enable(struct sway_output *output, struct output_config *oc) { arrange_layers(output); arrange_root(); - - return true; } static void evacuate_sticky(struct sway_workspace *old_ws, -- cgit v1.2.3