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 .merge.shared_ids import get_shared_id_icon
|
||||||
from . import constants
|
from . import constants
|
||||||
from . import config
|
from . import config
|
||||||
|
from .merge.task_layer import draw_task_layer_selection
|
||||||
|
|
||||||
|
|
||||||
def sync_poll(cls, context):
|
def sync_poll(cls, context):
|
||||||
@ -64,7 +65,12 @@ def sync_draw(self, context):
|
|||||||
box = layout.box()
|
box = layout.box()
|
||||||
box.label(text="New 'Shared IDs' found")
|
box.label(text="New 'Shared IDs' found")
|
||||||
for id in self._shared_ids:
|
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:
|
if len(self._temp_transfer_data) == 0:
|
||||||
layout.label(text="No new local Transfer Data found")
|
layout.label(text="No new local Transfer Data found")
|
||||||
|
Loading…
Reference in New Issue
Block a user