[Bf-blender-cvs] [e88654c31bd] master: UI: change order of Live Unwrap in menu U key still goes to Unwrap first

Brecht Van Lommel noreply at git.blender.org
Thu May 23 11:05:19 CEST 2019


Commit: e88654c31bd7ac5f1060e2cc589fe17ca16a26cc
Author: Brecht Van Lommel
Date:   Thu May 23 11:03:39 2019 +0200
Branches: master
https://developer.blender.org/rBe88654c31bd7ac5f1060e2cc589fe17ca16a26cc

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.

===================================================================

M	release/scripts/startup/bl_ui/space_view3d.py

===================================================================

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")



More information about the Bf-blender-cvs mailing list