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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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