feat(rcf): id support

This commit is contained in:
Swann
2019-02-14 15:30:35 +01:00
parent 886befeb14
commit b2e6d27ec7
3 changed files with 54 additions and 32 deletions

View File

@ -35,7 +35,7 @@ class SessionPanel(bpy.types.Panel):
area_msg = row.box()
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))
area_msg.label(text="{} ({}) - ".format(key, values.mtype, values.id.decode()))
else:
area_msg.label(text="Empty")