feat(rcf): relatively agnostic property transfert is working !

This commit is contained in:
Swann
2019-02-14 14:02:53 +01:00
parent 2cd1f604ec
commit 886befeb14
3 changed files with 25 additions and 25 deletions

View File

@ -33,9 +33,9 @@ class SessionPanel(bpy.types.Panel):
row = layout.row()
area_msg = row.box()
if len(net_operators.client.property_map) > 0:
for key,value in net_operators.client.property_map.items():
area_msg.label(text="{}".format(key))
if len(net_operators.client.property_map) > 0:
for key,values in net_operators.client.property_map.items():
area_msg.label(text="{} ({})".format(key, values.mtype))
else:
area_msg.label(text="Empty")