feat(rcf): more tests

This commit is contained in:
Swann Martinez
2019-03-20 16:46:55 +01:00
parent ae82b2ee67
commit 4c077449bc
3 changed files with 32 additions and 7 deletions

View File

@ -56,10 +56,8 @@ class SessionSettingsPanel(bpy.types.Panel):
row = layout.row()
row.operator("session.stop", icon='QUIT', text="CANCEL")
row = layout.row()
row.operator("session.load_data")
class SessionUsersPanel(bpy.types.Panel):
@ -83,7 +81,6 @@ class SessionUsersPanel(bpy.types.Panel):
scene = context.scene
# Create a simple row.
row = layout.row()
if net_operators.client:
if len(net_operators.client.property_map) > 0:
for key, values in net_operators.client.property_map.items():
@ -106,6 +103,7 @@ class SessionUsersPanel(bpy.types.Panel):
row.label(text="Empty")
row = layout.row()
class SessionPropertiesPanel(bpy.types.Panel):