update for change in blender

This commit is contained in:
Campbell Barton 2013-10-31 12:07:24 +00:00
parent 2a3e479351
commit 8078c1a024
4 changed files with 0 additions and 4 deletions

View File

@ -399,7 +399,6 @@ class AmcAnimator(bpy.types.Operator):
bpy.context.scene.frame_set(bpy.context.scene.frame_current)
context.window_manager.event_timer_remove(self.timer)
bpy.ops.object.mode_set(mode='OBJECT')
return {'CANCELLED'}
class AmcImporter(bpy.types.Operator):

View File

@ -95,7 +95,6 @@ class C3DAnimateCloud(bpy.types.Operator):
def cancel(self, context):
bpy.context.scene.frame_set(bpy.context.scene.frame_current)
context.window_manager.event_timer_remove(self.timer)
return {'CANCELLED'}
class C3DImporter(bpy.types.Operator):

View File

@ -603,7 +603,6 @@ class ScreencastKeysStatus(bpy.types.Operator):
if context.window_manager.screencast_keys_keys:
ScreencastKeysStatus.handle_remove(context)
context.window_manager.screencast_keys_keys = False
return {'CANCELLED'}
def invoke(self, context, event):
if context.area.type == 'VIEW_3D':

View File

@ -404,7 +404,6 @@ class DemoMode(bpy.types.Operator):
print("func:DemoMode.cancel")
# disable here means no running on file-load.
self.cleanup()
return {'CANCELLED'}
# call from DemoModeControl
@classmethod