mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 05:18:19 +00:00
Fix one item folders (#442)
This commit is contained in:
parent
3dea989a00
commit
854d6cc8e4
1 changed files with 1 additions and 1 deletions
|
@ -497,7 +497,7 @@ export default defineComponent({
|
|||
path.push(BigInt(item.layerId.toString()));
|
||||
const mapping = cache.get(path.toString());
|
||||
if (mapping) layers.push(mapping);
|
||||
if (item.children.length > 1) recurse(item, layers, cache);
|
||||
if (item.children.length >= 1) recurse(item, layers, cache);
|
||||
path.pop();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue