[Bf-blender-cvs] [f0c2f4fa916] master: Tracking: Fix missing checks in operator poll functions

Sergey Sharybin noreply at git.blender.org
Mon Aug 14 11:52:53 CEST 2017


Commit: f0c2f4fa916cd0060dceac60183b95033e409578
Author: Sergey Sharybin
Date:   Mon Aug 14 11:46:00 2017 +0200
Branches: master
https://developer.blender.org/rBf0c2f4fa916cd0060dceac60183b95033e409578

Tracking: Fix missing checks in operator poll functions

Reported by Vuk Gardašević (lijenstina) in IRC, thanks!

===================================================================

M	release/scripts/startup/bl_operators/clip.py

===================================================================

diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py
index d8ef9e1f3ef..f63b0495d02 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -210,7 +210,7 @@ class CLIP_OT_set_active_clip(bpy.types.Operator):
     @classmethod
     def poll(cls, context):
         space = context.space_data
-        return space.type == 'CLIP_EDITOR'
+        return space.type == 'CLIP_EDITOR' and space.clip
 
     def execute(self, context):
         clip = context.space_data.clip
@@ -254,6 +254,11 @@ class CLIP_OT_track_to_empty(Operator):
         constraint.object = tracking_object.name
         constraint.camera = CLIP_camera_for_clip(context, clip)
 
+    @classmethod
+    def poll(cls, context):
+        space = context.space_data
+        return space.type == 'CLIP_EDITOR' and space.clip
+
     def execute(self, context):
         sc = context.space_data
         clip = sc.clip




More information about the Bf-blender-cvs mailing list