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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-08-22 17:59:04 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-08-23 20:05:42 +0300
commit1de3ae7e427eace696b760fe6fa298157ee7c544 (patch)
tree9ed0cf92810a1b6234a6c48cc82d3e557e29d3d4 /release/scripts/startup/bl_ui/space_image.py
parent7fa77cd31d925f4c70448e00e4c34d65b6a89f14 (diff)
UI: rename Grease Pencil panels in toolbar to Annotation.
To match the panels in the N key sidebar.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_image.py')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 06615ebb2c3..24673af319e 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -33,8 +33,8 @@ from .properties_paint_common import (
brush_mask_texture_settings,
)
from .properties_grease_pencil_common import (
- GreasePencilDrawingToolsPanel,
- GreasePencilDataPanel,
+ AnnotationDrawingToolsPanel,
+ AnnotationDataPanel,
)
from bpy.app.translations import pgettext_iface as iface_
@@ -1436,7 +1436,7 @@ class IMAGE_PT_scope_sample(ImageScopesPanel, Panel):
# Grease Pencil properties
-class IMAGE_PT_grease_pencil(GreasePencilDataPanel, Panel):
+class IMAGE_PT_grease_pencil(AnnotationDataPanel, Panel):
bl_space_type = 'IMAGE_EDITOR'
bl_region_type = 'UI'
@@ -1445,7 +1445,7 @@ class IMAGE_PT_grease_pencil(GreasePencilDataPanel, Panel):
# Grease Pencil drawing tools.
-class IMAGE_PT_tools_grease_pencil_draw(GreasePencilDrawingToolsPanel, Panel):
+class IMAGE_PT_tools_grease_pencil_draw(AnnotationDrawingToolsPanel, Panel):
bl_space_type = 'IMAGE_EDITOR'
bl_region_type = 'TOOLS'