Fix shapes only showing up as outlines on document load (#1375)

No longer treat a graphic group as an error
This commit is contained in:
Dennis Kobert
2023-08-08 14:07:39 +02:00
committed by GitHub
parent 5b6a74eb38
commit e32d4c29c4

View File

@@ -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));