From db9b587f410848964b5b56459704613e5f17bf24 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Tue, 8 Sep 2026 15:06:47 +0000 Subject: [PATCH] Route the render metadata attributes through fill and stroke --- editor/src/node_graph_executor.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/editor/src/node_graph_executor.rs b/editor/src/node_graph_executor.rs index c01e273602..f250d94ddc 100644 --- a/editor/src/node_graph_executor.rs +++ b/editor/src/node_graph_executor.rs @@ -712,7 +712,8 @@ impl NodeGraphExecutor { text_frames, clip_targets, vector_data, - appearance_attributes, + fill_attributes, + stroke_attributes, backgrounds: _, } = render_output.metadata; @@ -727,7 +728,8 @@ impl NodeGraphExecutor { responses.add(DocumentMessage::UpdateTextFrames { text_frames }); responses.add(DocumentMessage::UpdateClipTargets { clip_targets }); responses.add(DocumentMessage::UpdateVectorData { vector_data }); - responses.add(DocumentMessage::UpdateAppearanceAttributes { appearance_attributes }); + responses.add(DocumentMessage::UpdateFillAttributes { fill_attributes }); + responses.add(DocumentMessage::UpdateStrokeAttributes { stroke_attributes }); responses.add(DocumentMessage::RenderScrollbars); responses.add(DocumentMessage::RenderRulers); responses.add(OverlaysMessage::Draw);