mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix(sp): improving data collection
This commit is contained in:
parent
4261972a8d
commit
4bd0ab0b7b
1 changed files with 2 additions and 2 deletions
|
|
@ -357,7 +357,7 @@ class DropDataFrame(QtWidgets.QFrame):
|
|||
if data['name'] == item.in_data['name']:
|
||||
found = True
|
||||
break
|
||||
paths = data['files']
|
||||
paths = list(data['files'])
|
||||
paths.extend(item.in_data['files'])
|
||||
c, r = clique.assemble(paths)
|
||||
if len(c) == 0:
|
||||
|
|
@ -392,7 +392,7 @@ class DropDataFrame(QtWidgets.QFrame):
|
|||
else:
|
||||
if data['name'] != item.in_data['name']:
|
||||
continue
|
||||
if data['files'] == item.in_data['files']:
|
||||
if data['files'] == list(item.in_data['files']):
|
||||
found = True
|
||||
break
|
||||
a_name = 'merge'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue