Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-10-31 16:07:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-10-31 16:07:24 +0400
commit8078c1a024dc98d55503edde57a4f1d90fac7316 (patch)
treeb2f41ea0d13e7dab8ffa232e69b80a5ba2ffaff7
parent2a3e4793511554ca5406398b3bf4653783f3560e (diff)
update for change in blender
-rw-r--r--io_anim_acclaim/__init__.py1
-rw-r--r--io_anim_c3d/__init__.py1
-rw-r--r--space_view3d_screencast_keys.py1
-rw-r--r--system_demo_mode/demo_mode.py1
4 files changed, 0 insertions, 4 deletions
diff --git a/io_anim_acclaim/__init__.py b/io_anim_acclaim/__init__.py
index e47f50fe..d929a44c 100644
--- a/io_anim_acclaim/__init__.py
+++ b/io_anim_acclaim/__init__.py
@@ -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):
diff --git a/io_anim_c3d/__init__.py b/io_anim_c3d/__init__.py
index 02704552..0f918fdf 100644
--- a/io_anim_c3d/__init__.py
+++ b/io_anim_c3d/__init__.py
@@ -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):
diff --git a/space_view3d_screencast_keys.py b/space_view3d_screencast_keys.py
index b93698cb..f568c31a 100644
--- a/space_view3d_screencast_keys.py
+++ b/space_view3d_screencast_keys.py
@@ -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':
diff --git a/system_demo_mode/demo_mode.py b/system_demo_mode/demo_mode.py
index 740dc50a..b7986b73 100644
--- a/system_demo_mode/demo_mode.py
+++ b/system_demo_mode/demo_mode.py
@@ -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