mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
Fix regression that reversed indexing of the Loop Level parameter of the 'Instance Index' node (#3421)
This commit is contained in:
@@ -305,7 +305,7 @@ impl ExtractAnimationTime for OwnedContextImpl {
|
||||
}
|
||||
impl ExtractIndex for OwnedContextImpl {
|
||||
fn try_index(&self) -> Option<impl Iterator<Item = usize>> {
|
||||
self.index.clone().map(|x| x.into_iter())
|
||||
self.index.clone().map(|x| x.into_iter().rev())
|
||||
}
|
||||
}
|
||||
impl ExtractVarArgs for OwnedContextImpl {
|
||||
|
||||
Reference in New Issue
Block a user