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:
authorCampbell Barton <ideasman42@gmail.com>2011-03-10 08:52:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-10 08:52:16 +0300
commit3ad8fd44c4047d0ee95eca50de066ad87419c738 (patch)
treeecc07527b1f39de1f2b660318dcbeca02d405956 /release/scripts
parent6a324428554a5a01da58af810fd18f7b12a1f373 (diff)
request from Jedrzej Slewczuk's:
Option for tagging creases (Ctrl+RMB) to also re-unwrap the mesh. In 2.42 this could be done by setting rt==8 (very hidden), now its a little less hidden (in the toolbar).
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/ui/space_view3d_toolbar.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py
index eb8d9a23d91..985844d77da 100644
--- a/release/scripts/ui/space_view3d_toolbar.py
+++ b/release/scripts/ui/space_view3d_toolbar.py
@@ -177,7 +177,15 @@ class VIEW3D_PT_tools_meshedit_options(View3DPanel, bpy.types.Panel):
col = layout.column(align=True)
col.prop(mesh, "use_mirror_x")
col.prop(mesh, "use_mirror_topology")
- col.prop(context.tool_settings, "edge_path_mode")
+
+ ts = context.tool_settings
+
+ col.label("Edge Select Mode")
+ col.prop(ts, "edge_path_mode", text="")
+
+ col = layout.column(align=True)
+ col.active = ts.edge_path_mode == 'SEAM'
+ col.prop(context.tool_settings, "edge_path_live_unwrap")
# ********** default tools for editmode_curve ****************