aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sway/desktop/output.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index bc0ca470..bf5b284b 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -546,6 +546,7 @@ static void update_output_manager_config(struct sway_server *server) {
static void handle_destroy(struct wl_listener *listener, void *data) {
struct sway_output *output = wl_container_of(listener, output, destroy);
+ struct sway_server *server = output->server;
wl_signal_emit(&output->events.destroy, output);
if (output->enabled) {
@@ -563,7 +564,7 @@ static void handle_destroy(struct wl_listener *listener, void *data) {
transaction_commit_dirty();
- update_output_manager_config(output->server);
+ update_output_manager_config(server);
}
static void handle_mode(struct wl_listener *listener, void *data) {