mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-02 20:42:16 +00:00
Fix Subtract Node from adding instead of subtracting (#1614)
This commit is contained in:
parent
15931d06b1
commit
a50b6b0a09
1 changed files with 1 additions and 1 deletions
|
@ -1930,7 +1930,7 @@ fn static_nodes() -> Vec<DocumentNodeDefinition> {
|
|||
DocumentNodeDefinition {
|
||||
name: "Subtract",
|
||||
category: "Math",
|
||||
implementation: NodeImplementation::proto("graphene_core::ops::AddNode<_>"),
|
||||
implementation: NodeImplementation::proto("graphene_core::ops::SubtractNode<_>"),
|
||||
inputs: vec![
|
||||
DocumentInputType::value("Primary", TaggedValue::F32(0.), true),
|
||||
DocumentInputType::value("Subtrahend", TaggedValue::F32(0.), false),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue