From a4e4d4c88e87102a9214857e02edd1c518e54081 Mon Sep 17 00:00:00 2001 From: salivala Date: Thu, 6 Nov 2025 15:13:25 -0500 Subject: [PATCH] added default case to handle new node variant err --- src/animation/common.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/animation/common.h b/src/animation/common.h index 06ffe1ab..9c28d80a 100644 --- a/src/animation/common.h +++ b/src/animation/common.h @@ -200,6 +200,9 @@ static bool scene_node_snapshot(struct wlr_scene_node *node, int lx, int ly, } case WLR_SCENE_NODE_OPTIMIZED_BLUR: return true; + + default: + return true; } if (snapshot_node != NULL) { @@ -238,4 +241,4 @@ void request_fresh_all_monitors(void) { } wlr_output_schedule_frame(m->wlr_output); } -} \ No newline at end of file +}