feat: show flag for user on an other scene

feat: disable user drawing on other scene

Related to #40
This commit is contained in:
Swann Martinez
2020-03-05 17:20:04 +01:00
parent fe9a096ab2
commit 250cf91032
4 changed files with 25 additions and 6 deletions

View File

@ -341,7 +341,10 @@ class SESSION_PT_presence(bpy.types.Panel):
col = layout.column()
col.prop(settings,"presence_show_selected")
col.prop(settings,"presence_show_user")
row = layout.row()
row = layout.column()
row.active = settings.presence_show_user
row.prop(settings,"presence_show_far_user")
class SESSION_PT_services(bpy.types.Panel):
bl_idname = "MULTIUSER_SERVICE_PT_panel"