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:
authorHoward Trickey <howard.trickey@gmail.com>2019-05-20 15:51:18 +0300
committerHoward Trickey <howard.trickey@gmail.com>2019-05-20 15:51:53 +0300
commit43500671dc7227df1a557ec6109a3323ee4ba348 (patch)
tree0bce4a1a7891d5478ad14805826329c55e3bec44 /release/scripts/startup/bl_ui/space_view3d_toolbar.py
parent49f530c7da6bd117c4b373307eb646d513538526 (diff)
Normal UI: Remove normals toolbar and add/muliply menu options.
See T64324 for discussion re improving normal editing ui. As next step, remove the face_strength tool settings because menu operator now includes that. Move face_strenth enum to better place. Remove normals toolbar panel because only thing left (normal_vector) can stay hidden for copy/paste. Remove add vector and multiply vector menu entries as they are useless without ui method for specifying operand, and they are very low utility operations anyway.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 76a0cbb8533..dd9f09f0a45 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1621,22 +1621,6 @@ class VIEW3D_PT_tools_particlemode_options_display(View3DPanel, Panel):
sub.prop(pe, "fade_frames", slider=True)
-class VIEW3D_PT_tools_meshedit_normal(View3DPanel, Panel):
- bl_category = "Tool"
- bl_context = ".mesh_edit"
- bl_label = "Normals"
- bl_options = {'DEFAULT_CLOSED'}
-
- def draw(self, context):
- layout = self.layout
- layout.use_property_split = True
- layout.use_property_decorate = False # No animation.
-
- tool_settings = context.tool_settings
-
- layout.prop(tool_settings, "normal_vector", text="Normal Vector")
- layout.prop(tool_settings, "face_strength", text="Face Strength")
-
# ********** grease pencil object tool panels ****************
# Grease Pencil drawing brushes
@@ -2044,7 +2028,6 @@ class VIEW3D_PT_gpencil_brush_presets(PresetPanel, Panel):
classes = (
- VIEW3D_PT_tools_meshedit_normal,
VIEW3D_PT_tools_meshedit_options,
VIEW3D_PT_tools_curveedit_options_stroke,
VIEW3D_PT_tools_armatureedit_options,