From 37d88fdb8681afab6ff347b91df232d179ab7885 Mon Sep 17 00:00:00 2001 From: Antonioya Date: Thu, 27 Sep 2018 18:03:13 +0200 Subject: [PATCH] GP: Remove old annotation panel from Image editor This has been replaced with tools. --- release/scripts/startup/bl_ui/space_image.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py index 50b9585b06a..db030beef36 100644 --- a/release/scripts/startup/bl_ui/space_image.py +++ b/release/scripts/startup/bl_ui/space_image.py @@ -33,7 +33,6 @@ from .properties_paint_common import ( brush_mask_texture_settings, ) from .properties_grease_pencil_common import ( - AnnotationDrawingToolsPanel, AnnotationDataPanel, ) from bpy.app.translations import pgettext_iface as iface_ @@ -1477,11 +1476,6 @@ class IMAGE_PT_grease_pencil(AnnotationDataPanel, Panel): # Grease Pencil drawing tools. -class IMAGE_PT_tools_grease_pencil_draw(AnnotationDrawingToolsPanel, Panel): - bl_space_type = 'IMAGE_EDITOR' - bl_region_type = 'TOOLS' - - classes = ( IMAGE_MT_view, IMAGE_MT_view_zoom, @@ -1538,7 +1532,6 @@ classes = ( IMAGE_PT_sample_line, IMAGE_PT_scope_sample, IMAGE_PT_grease_pencil, - IMAGE_PT_tools_grease_pencil_draw, )