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>2019-05-15 21:26:26 +0300
committerAntonioya <blendergit@gmail.com>2019-05-15 21:26:26 +0300
commit9baf669493cfd023c467a273482d0a1a2d6a767b (patch)
treee66ccb7349d3615eb46020c04abeebd0c90d7758
parentfe8f0758c65150fbedcd5249a7fbc386e6c9d40f (diff)
Fix T64649: Deprecated Annotation editing causes a crash
The Edit option was removed from annotations and the buttons must not be in the panel.
-rw-r--r--release/scripts/startup/bl_ui/properties_grease_pencil_common.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index 05a8735fc2f..4c77a6ad2c6 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -130,15 +130,6 @@ class AnnotationDrawingToolsPanel:
gpencil_stroke_placement_settings(context, col)
- gpd = context.gpencil_data
-
- if gpd and not is_3d_view:
- layout.separator()
- layout.separator()
-
- col = layout.column(align=True)
- col.prop(gpd, "use_stroke_edit_mode", text="Enable Editing", toggle=True) # was: icon='EDIT'
-
class GreasePencilStrokeEditPanel:
# subclass must set
@@ -802,18 +793,6 @@ class GreasePencilToolsPanel:
gpd = context.gpencil_data
- layout.prop(gpd, "use_stroke_edit_mode", text="Enable Editing", icon='EDIT', toggle=True)
-
- layout.separator()
-
- layout.label(text="Proportional Edit:")
- row = layout.row()
- row.prop(context.tool_settings, "use_proportional_edit", text="")
- row.prop(context.tool_settings, "proportional_edit_falloff", text="")
-
- layout.separator()
- layout.separator()
-
gpencil_active_brush_settings_simple(context, layout)
layout.separator()