[Bf-blender-cvs] [f195fc73b0a] greasepencil-object: UI: Fix align in weight paint panel

Antonio Vazquez noreply at git.blender.org
Tue Jun 19 16:19:19 CEST 2018


Commit: f195fc73b0a371568aad2c684e0eb6685eca7c62
Author: Antonio Vazquez
Date:   Tue Jun 19 16:19:13 2018 +0200
Branches: greasepencil-object
https://developer.blender.org/rBf195fc73b0a371568aad2c684e0eb6685eca7c62

UI: Fix align in weight paint panel

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index c3f309b01c0..8922e367e2b 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1685,6 +1685,7 @@ class VIEW3D_PT_tools_grease_pencil_weight_paint(View3DPanel, Panel):
     def draw(self, context):
         layout = self.layout
         layout.use_property_split = True
+        layout.use_property_decorate = False
 
         gpd = context.gpencil_data
         settings = context.tool_settings.gpencil_sculpt
@@ -1698,6 +1699,7 @@ class VIEW3D_PT_tools_grease_pencil_weight_paint(View3DPanel, Panel):
         row = col.row(align=True)
         row.prop(brush, "strength", slider=True)
         row.prop(brush, "use_pressure_strength", text="")
+        
         col.prop(brush, "use_falloff")



More information about the Bf-blender-cvs mailing list