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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonioya <blendergit@gmail.com>2018-09-27 19:03:13 +0300
committerAntonioya <blendergit@gmail.com>2018-09-27 19:03:13 +0300
commit37d88fdb8681afab6ff347b91df232d179ab7885 (patch)
tree6eeaf8af50cf0eb9bdd0954ca8e1d18e16c2b816 /release/scripts/startup/bl_ui
parentbeb91b5f41a6518b5b9d56758e819dcb21d3ac0a (diff)
GP: Remove old annotation panel from Image editor
This has been replaced with tools.
Diffstat (limited to 'release/scripts/startup/bl_ui')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py7
1 files changed, 0 insertions, 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,
)