[Bf-blender-cvs] [5330415de23] greasepencil-object: UI: Move angle factor to top of the panel

Antonio Vazquez noreply at git.blender.org
Fri Mar 16 18:54:36 CET 2018


Commit: 5330415de23d2295e101de4970587c4caf315635
Author: Antonio Vazquez
Date:   Fri Mar 16 18:54:29 2018 +0100
Branches: greasepencil-object
https://developer.blender.org/rB5330415de23d2295e101de4970587c4caf315635

UI: Move angle factor to top of the 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 62c39059f75..12b833c60f6 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -2160,6 +2160,11 @@ class VIEW3D_PT_tools_grease_pencil_brush_option(Panel):
             col.prop(brush, "active_smooth_factor")
             col.separator()
 
+            row = col.row(align=True)
+            row.prop(brush, "angle", slider=True)
+            row.prop(brush, "angle_factor", text="Factor", slider=True)
+            col.separator()
+
             if brush.gpencil_brush_type == 'DRAW':
                 col.prop(brush, "use_stabilizer", text="Stabilizer")
                 if brush.use_stabilizer:
@@ -2183,10 +2188,6 @@ class VIEW3D_PT_tools_grease_pencil_brush_option(Panel):
                 row = col.row(align=True)
                 row.prop(brush, "pen_jitter", slider=True)
                 row.prop(brush, "use_jitter_pressure", text="", icon='STYLUS_PRESSURE')
-
-                row = col.row(align=True)
-                row.prop(brush, "angle", slider=True)
-                row.prop(brush, "angle_factor", text="Factor", slider=True)
                 col.separator()
 
             col.prop(brush, "enable_settings", text="Post-processing Settings")



More information about the Bf-blender-cvs mailing list