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:
authorPablo Vazquez <contact@pablovazquez.art>2019-01-29 20:58:34 +0300
committerPablo Vazquez <contact@pablovazquez.art>2019-01-29 20:58:34 +0300
commitea3f5af962140588f7c464464220b45b638ef46b (patch)
treedd3253cf35f9c702ae175d7fb760f79f3b4dd47b /release
parent9552d4b32108af968c1fb822ce57ad0ec8f566cb (diff)
UI: Add Dynamic Topology toggle entry to Sculpt menu
Helps to find the shortcut (Ctrl+D) which wasn't exposed anywhere else than in search.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index cca13d6d766..ccc7d5bdfd2 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2336,6 +2336,10 @@ class VIEW3D_MT_sculpt(Menu):
tool_settings = context.tool_settings
sculpt = tool_settings.sculpt
+ layout.operator("sculpt.dynamic_topology_toggle", text="Toggle Dynamic Topology")
+
+ layout.separator()
+
layout.prop(sculpt, "use_symmetry_x")
layout.prop(sculpt, "use_symmetry_y")
layout.prop(sculpt, "use_symmetry_z")