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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-23 12:03:39 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-23 12:04:54 +0300
commite88654c31bd7ac5f1060e2cc589fe17ca16a26cc (patch)
tree8c9ed2ae7e94c43c1e6d625d3b2db7809eda259d /release
parent49593a2c38f0f31869beb818f6436c96f0395803 (diff)
UI: change order of Live Unwrap in menu U key still goes to Unwrap first
Also makes it more clear it's related specifically to this type of unwrapping.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 12822050364..5665cd5c3cc 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -958,12 +958,11 @@ class VIEW3D_MT_uv_map(Menu):
tool_settings = context.tool_settings
+ layout.operator("uv.unwrap")
layout.prop(tool_settings, "use_edge_path_live_unwrap")
layout.separator()
- layout.operator("uv.unwrap")
-
layout.operator_context = 'INVOKE_DEFAULT'
layout.operator("uv.smart_project")
layout.operator("uv.lightmap_pack")