From 13f57237f24a4537bef9c080418c7837f6496a6c Mon Sep 17 00:00:00 2001 From: Antonioya Date: Mon, 29 Jul 2019 12:39:19 +0200 Subject: Fix T67331: Annotations: Rename old grease pencil panels These panels were using the old names, but now they are not grease pencil, but annotations. Also removed old Tools panel. This must be replaced with new Toolbar --- release/scripts/startup/bl_ui/space_image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'release/scripts/startup/bl_ui/space_image.py') diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py index 8f6e9d71790..bd003063e16 100644 --- a/release/scripts/startup/bl_ui/space_image.py +++ b/release/scripts/startup/bl_ui/space_image.py @@ -1684,7 +1684,7 @@ class IMAGE_PT_uv_cursor(Panel): # Grease Pencil properties -class IMAGE_PT_grease_pencil(AnnotationDataPanel, Panel): +class IMAGE_PT_annotation(AnnotationDataPanel, Panel): bl_space_type = 'IMAGE_EDITOR' bl_region_type = 'UI' bl_category = "View" @@ -1750,7 +1750,7 @@ classes = ( IMAGE_PT_sample_line, IMAGE_PT_scope_sample, IMAGE_PT_uv_cursor, - IMAGE_PT_grease_pencil, + IMAGE_PT_annotation, ) -- cgit v1.2.3