fix(rcf): right managment

use id from store body value (#71)
This commit is contained in:
Swann Martinez
2019-04-25 10:42:04 +02:00
parent e572496188
commit f467c65e59
4 changed files with 29 additions and 10 deletions

3
ui.py
View File

@ -156,8 +156,9 @@ class SessionPropertiesPanel(bpy.types.Panel):
for item in operators.client_keys:
owner = 'toto'
try:
owner = item[1].decode()
owner = item[1]
except:
owner = item[1].decode()
pass
item_box = area_msg.box()