fix: bl_ related errors

This commit is contained in:
Swann Martinez
2019-10-02 16:19:44 +02:00
parent 98999f09bb
commit 7c9decdded
4 changed files with 16 additions and 9 deletions

View File

@ -136,7 +136,7 @@ class SessionStartOperator(bpy.types.Operator):
delayables.append(delayable.DynamicRightSelectTimer())
# Push all added values
client.push()
client.push_all()
# Launch drawing module
if settings.enable_presence:
@ -280,7 +280,7 @@ class SessionApply(bpy.types.Operator):
def execute(self, context):
global client
client.apply(uuid=self.target)
client.apply(self.target)
return {"FINISHED"}
@ -301,7 +301,7 @@ class SessionCommit(bpy.types.Operator):
global client
client.commit(uuid=self.target)
client.push(uuid=self.target)
client.push(self.target)
return {"FINISHED"}