mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 19:08:05 +08:00
Use .then() instead of .after() for sequencing nodes (#760)
* Add .then() for sequencing nodes * Remove all uses af after Co-authored-by: Keavon Chambers <keavon@keavon.com>
This commit is contained in:
committed by
Keavon Chambers
parent
c28d618291
commit
f5e8c48dfb
@@ -105,7 +105,7 @@ mod test {
|
||||
let value = value.as_owned();
|
||||
|
||||
/*let computation = ComposeNode::new(value, add);
|
||||
let computation = id.after(add.after(value));
|
||||
let computation = value.then(add).then(id);
|
||||
let result: u32 = *dyn_any::downcast(computation.eval(&())).unwrap();*/
|
||||
}*/
|
||||
#[test]
|
||||
|
||||
Reference in New Issue
Block a user