From c27472c04ef294a1de6ab9804c3b87f5635a8fcd Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 10 Jun 2012 12:30:47 +0000 Subject: [PATCH] Synchronize changes with tomato branch --- release/scripts/startup/bl_ui/space_clip.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py index 10361eeef0d..d0f0f3de276 100644 --- a/release/scripts/startup/bl_ui/space_clip.py +++ b/release/scripts/startup/bl_ui/space_clip.py @@ -181,16 +181,6 @@ class CLIP_PT_reconstruction_panel: return clip and sc.mode == 'RECONSTRUCTION' and sc.view == 'CLIP' -class CLIP_PT_distortion_panel: - - @classmethod - def poll(cls, context): - sc = context.space_data - clip = sc.clip - - return clip and sc.mode == 'DISTORTION' and sc.view == 'CLIP' - - class CLIP_PT_tools_marker(CLIP_PT_tracking_panel, Panel): bl_space_type = 'CLIP_EDITOR' bl_region_type = 'TOOLS'