File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
editor/src/messages/portfolio/document/node_graph Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ fn static_nodes() -> Vec<DocumentNodeDefinition> {
85
85
let custom = vec ! [
86
86
// TODO: Auto-generate this from its proto node macro
87
87
DocumentNodeDefinition {
88
- identifier: "Pass Through " ,
88
+ identifier: "Passthrough " ,
89
89
category: "General" ,
90
90
node_template: NodeTemplate {
91
91
document_node: DocumentNode {
@@ -2071,7 +2071,7 @@ fn static_node_properties() -> NodeProperties {
2071
2071
map. insert ( "sample_polyline_properties" . to_string ( ) , Box :: new ( node_properties:: sample_polyline_properties) ) ;
2072
2072
map. insert (
2073
2073
"pass_through_properties" . to_string ( ) ,
2074
- Box :: new ( |_node_id, _context| node_properties:: string_properties ( "The Pass Through node can be used to organize wires." ) ) ,
2074
+ Box :: new ( |_node_id, _context| node_properties:: string_properties ( "The Passthrough node can be used to organize wires." ) ) ,
2075
2075
) ;
2076
2076
map. insert (
2077
2077
"monitor_properties" . to_string ( ) ,
Original file line number Diff line number Diff line change 54
54
// Quick and dirty hack to alias "Layer" to "Merge" in the search
55
55
const layerAliasMatch = node .name === " Merge" && " layer" .includes (term );
56
56
57
- // Alias "Identity" to "Pass Through "
58
- const identityAliasMatch = node .name === " Pass Through " && " identity" .includes (term );
57
+ // Alias "Identity" to "Passthrough "
58
+ const identityAliasMatch = node .name === " Passthrough " && " identity" .includes (term );
59
59
60
60
return nameMatch || categoryMatch || layerAliasMatch || identityAliasMatch ;
61
61
});
You can’t perform that action at this time.
0 commit comments