~ruther/dwl

433385f7f18abb607c4feff6d6c7fa817071a710 — Leonardo Hernández Hernández 1 year, 2 months ago 26d7c96
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)
1 files changed, 4 insertions(+), 0 deletions(-)

M dwl.c
M dwl.c => dwl.c +4 -0
@@ 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));

Do not follow this link