summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2023-12-07 22:18:49 -0600
committerLeonardo Hernández Hernández <leohdz172@proton.me>2023-12-07 22:18:49 -0600
commite03896b4d61ae99eec16f3ed0408d5499c0494b4 (patch)
treeeddc5d8798bf385de47014ad8dd756623d7368c0
parente7e84b10837424ea6d969afa239944ea53d16b14 (diff)
avoid duplication of lines
the output state is copied when creating a output configuration head
-rw-r--r--dwl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/dwl.c b/dwl.c
index d8969ba..3148072 100644
--- a/dwl.c
+++ b/dwl.c
@@ -2599,8 +2599,7 @@ updatemons(struct wl_listener *listener, void *data)
/* Try to re-set the gamma LUT when updating monitors,
* it's only really needed when enabling a disabled output, but meh. */
m->gamma_lut_changed = 1;
- config_head->state.enabled = 1;
- config_head->state.mode = m->wlr_output->current_mode;
+
config_head->state.x = m->m.x;
config_head->state.y = m->m.y;
}