From e32d4c29c4182244426fb7e4af32bac6c26de820 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Tue, 8 Aug 2023 14:07:39 +0200 Subject: [PATCH] Fix shapes only showing up as outlines on document load (#1375) No longer treat a graphic group as an error --- editor/src/node_graph_executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/src/node_graph_executor.rs b/editor/src/node_graph_executor.rs index 39b0a6ba..cb9ac055 100644 --- a/editor/src/node_graph_executor.rs +++ b/editor/src/node_graph_executor.rs @@ -522,7 +522,7 @@ impl NodeGraphExecutor { // Send to frontend responses.add(FrontendMessage::UpdateDocumentNodeRender { svg }); - return Err("Graphic group (see console)".to_string()); + //return Err("Graphic group (see console)".to_string()); } _ => { return Err(format!("Invalid node graph output type: {:#?}", node_graph_output));