Asset Pipeline v2 #145
@ -15,6 +15,7 @@ from .merge.transfer_data.transfer_ui import draw_transfer_data
|
||||
from .merge.shared_ids import get_shared_id_icon
|
||||
from . import constants
|
||||
from . import config
|
||||
from .merge.task_layer import draw_task_layer_selection
|
||||
|
||||
|
||||
def sync_poll(cls, context):
|
||||
@ -64,7 +65,12 @@ def sync_draw(self, context):
|
||||
box = layout.box()
|
||||
box.label(text="New 'Shared IDs' found")
|
||||
for id in self._shared_ids:
|
||||
box.label(text=id.name, icon=get_shared_id_icon(id))
|
||||
row = box.row()
|
||||
row.label(text=id.name, icon=get_shared_id_icon(id))
|
||||
draw_task_layer_selection(
|
||||
layout=row,
|
||||
data=id,
|
||||
)
|
||||
|
||||
if len(self._temp_transfer_data) == 0:
|
||||
layout.label(text="No new local Transfer Data found")
|
||||
|
Loading…
Reference in New Issue
Block a user