From 8a65e9404e80163200c319a5aa7cb94535695c7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20G=C3=B3mez?= Date: Fri, 9 Jan 2026 09:44:24 -0500 Subject: [PATCH] scene: include disabled nodes in scene buffer iterator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Sergio Gómez --- types/scene/wlr_scene.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/types/scene/wlr_scene.c b/types/scene/wlr_scene.c index 41a58f117..17056e852 100644 --- a/types/scene/wlr_scene.c +++ b/types/scene/wlr_scene.c @@ -1351,10 +1351,6 @@ bool wlr_scene_node_coords(struct wlr_scene_node *node, static void scene_node_for_each_scene_buffer(struct wlr_scene_node *node, int lx, int ly, wlr_scene_buffer_iterator_func_t user_iterator, void *user_data) { - if (!node->enabled) { - return; - } - lx += node->x; ly += node->y;