feat(ui): tri

This commit is contained in:
Swann Martinez
2019-05-09 15:56:30 +02:00
parent 34854f43e5
commit f25f893a83
2 changed files with 12 additions and 2 deletions

View File

@ -38,10 +38,17 @@ def client_list_callback(scene, context):
global client_keys
items = [("Common", "Common", "")]
username = bpy.context.scene.session_settings.username
if client_keys:
for k in client_keys:
if 'Client' in k[0]:
name = k[1]
if name == username:
name += " (self)"
items.append((name, name, ""))
return items
@ -368,7 +375,7 @@ class session_stop(bpy.types.Operator):
class session_rights(bpy.types.Operator):
bl_idname = "session.right"
bl_label = "close"
bl_label = "Change owner to"
bl_description = "stop net service"
bl_options = {"REGISTER"}