From 433385f7f18abb607c4feff6d6c7fa817071a710 Mon Sep 17 00:00:00 2001
From: Leonardo Hernández Hernández <leohdz172@proton.me>
Date: Wed, 24 Jan 2024 12:12:09 -0600
Subject: do not arrange monitor if it's disabled (wlroots!4520)
This causes us to send negative values to xdg-configures (e.g a bug in our end)
References: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4520
(cherry picked from commit 4043fc3093a73174cb63653ba9e742b4738f2ee5)
---
dwl.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dwl.c b/dwl.c
index bf02a6d..239f7d7 100644
--- a/dwl.c
+++ b/dwl.c
@@ -458,6 +458,10 @@ void
arrange(Monitor *m)
{
Client *c;
+
+ if (!m->wlr_output->enabled)
+ return;
+
wl_list_for_each(c, &clients, link) {
if (c->mon == m) {
wlr_scene_node_set_enabled(&c->scene->node, VISIBLEON(c, m));
--
cgit v1.2.3