[Bf-blender-cvs] [2d3bd58] master: Fix clip editor interface being broken by a71f072

Sergey Sharybin noreply at git.blender.org
Mon Jan 27 10:11:47 CET 2014


Commit: 2d3bd587fd26972495d939927513583be108aa4d
Author: Sergey Sharybin
Date:   Mon Jan 27 15:10:08 2014 +0600
https://developer.blender.org/rB2d3bd587fd26972495d939927513583be108aa4d

Fix clip editor interface being broken by a71f072

Please do test commits before committing them.
This is second working day in a row which was started with
solving issues caused by untested patches.

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

M	release/scripts/startup/bl_ui/space_clip.py

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

diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index 28d1d52..901e232 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -183,7 +183,8 @@ class CLIP_MT_masking_editor_menus(Menu):
 
     @staticmethod
     def draw_menus(layout, context):
-        layout = self.layout
+        sc = context.space_data
+        clip = sc.clip
 
         layout.menu("CLIP_MT_view")




More information about the Bf-blender-cvs mailing list