[Bf-blender-cvs] [c23e1b6efa2] greasepencil-object: GPencil: UI changes to Array modifier

Antonio Vazquez noreply at git.blender.org
Sun Feb 23 13:11:56 CET 2020


Commit: c23e1b6efa2b6adc13044f54df4f45760bb86bb3
Author: Antonio Vazquez
Date:   Sun Feb 23 13:11:05 2020 +0100
Branches: greasepencil-object
https://developer.blender.org/rBc23e1b6efa2b6adc13044f54df4f45760bb86bb3

GPencil: UI changes to Array modifier

- Replace Material by Material Override.
- Remove the separator between the rotation/scale triples and the random property.
- Add a separator after the rotation/scale props.

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index ee20c0e0338..c9990dc466a 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -2131,7 +2131,6 @@ class DATA_PT_gpencil_modifiers(ModifierButtonsPanel, Panel):
         col = split.column()
         col.label(text="Rotation:")
         col.prop(md, "rotation", text="")
-        col.separator()
         row = col.row(align=True)
         row.prop(md, "random_rot", text="", icon='TIME', toggle=True)
         row.prop(md, "rot_factor", text="")
@@ -2139,13 +2138,13 @@ class DATA_PT_gpencil_modifiers(ModifierButtonsPanel, Panel):
         col = split.column()
         col.label(text="Scale:")
         col.prop(md, "scale", text="")
-        col.separator()
         row = col.row(align=True)
         row.prop(md, "random_scale", text="", icon='TIME', toggle=True)
         row.prop(md, "scale_factor", text="")
 
         col = layout.column()
-        col.prop(md, "replace_material", text="Material")
+        col.separator()
+        col.prop(md, "replace_material", text="Material Override")
         col.prop(md, "keep_on_top", text="Keep original stroke on top")
 
         col = layout.column()



More information about the Bf-blender-cvs mailing list