[Bf-blender-cvs] [5ddba52029b] blender2.8: UI: Single-column layout for Shape Keys and Geometry Data

William Reynish noreply at git.blender.org
Mon Jun 25 17:05:06 CEST 2018


Commit: 5ddba52029b79788abb40088ed68913a99a70816
Author: William Reynish
Date:   Mon Jun 25 16:57:44 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB5ddba52029b79788abb40088ed68913a99a70816

UI: Single-column layout for Shape Keys and Geometry Data

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py
index 5ff9f83b1a9..e8015327c1d 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -353,19 +353,16 @@ class DATA_PT_shape_keys(MeshButtonsPanel, Panel):
                     row.active = enable_edit_value
                     row.prop(kb, "value")
 
-                    split = layout.split()
+                    layout.use_property_split = True
 
-                    col = split.column(align=True)
-                    col.active = enable_edit_value
-                    col.label(text="Range:")
-                    col.prop(kb, "slider_min", text="Min")
-                    col.prop(kb, "slider_max", text="Max")
+                    col = layout.column()
+                    sub.active = enable_edit_value
+                    sub = col.column(align=True)
+                    sub.prop(kb, "slider_min", text="Range Min")
+                    sub.prop(kb, "slider_max", text="Max")
 
-                    col = split.column(align=True)
-                    col.active = enable_edit_value
-                    col.label(text="Blend:")
-                    col.prop_search(kb, "vertex_group", ob, "vertex_groups", text="")
-                    col.prop_search(kb, "relative_key", key, "key_blocks", text="")
+                    col.prop_search(kb, "vertex_group", ob, "vertex_groups", text="Vertex Group")
+                    col.prop_search(kb, "relative_key", key, "key_blocks", text="Relative To")
 
             else:
                 layout.prop(kb, "interpolation")
@@ -419,6 +416,7 @@ class DATA_PT_customdata(MeshButtonsPanel, Panel):
 
     def draw(self, context):
         layout = self.layout
+        layout.use_property_split = True
 
         obj = context.object
         me = context.mesh



More information about the Bf-blender-cvs mailing list