Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2020-03-27 18:38:15 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-03-27 18:38:22 +0300
commit0db055338ab22be926a5c9ce46b4e45689947038 (patch)
tree071d425c33be76e53dfa2df22efb308e1674caa5 /release
parent671d811323edc44092eba4e17596badd606f4ebb (diff)
GPencil: Small tweaks to Fill material panel
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_material_gpencil.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/release/scripts/startup/bl_ui/properties_material_gpencil.py b/release/scripts/startup/bl_ui/properties_material_gpencil.py
index 9e0ad832fc9..5d10a2cef4a 100644
--- a/release/scripts/startup/bl_ui/properties_material_gpencil.py
+++ b/release/scripts/startup/bl_ui/properties_material_gpencil.py
@@ -191,7 +191,6 @@ class MATERIAL_PT_gpencil_fillcolor(GPMaterialButtonsPanel, Panel):
col.enabled = not gpcolor.lock
col.prop(gpcolor, "fill_style", text="Style")
-
if gpcolor.fill_style == 'SOLID':
col.prop(gpcolor, "fill_color", text="Base Color")
@@ -200,19 +199,23 @@ class MATERIAL_PT_gpencil_fillcolor(GPMaterialButtonsPanel, Panel):
col.prop(gpcolor, "fill_color", text="Base Color")
col.prop(gpcolor, "mix_color", text="Secondary Color")
- col.prop(gpcolor, "mix_factor", text="Blend in Fill Gradient", slider=True)
+ col.prop(gpcolor, "mix_factor", text="Blend", slider=True)
col.prop(gpcolor, "flip", text="Flip Colors")
col.prop(gpcolor, "texture_offset", text="Location")
+
+ row = col.row()
+ row.enabled = gpcolor.gradient_type == 'LINEAR'
+ row.prop(gpcolor, "texture_angle", text="Rotation")
+
col.prop(gpcolor, "texture_scale", text="Scale")
- if gpcolor.gradient_type == 'LINEAR':
- col.prop(gpcolor, "texture_angle", text="Rotation")
elif gpcolor.fill_style == 'TEXTURE':
+ col.prop(gpcolor, "fill_color", text="Base Color")
+
col.template_ID(gpcolor, "fill_image", open="image.open")
- col.prop(gpcolor, "fill_color", text="Base Color")
- col.prop(gpcolor, "mix_factor", text="Blend in Fill Texture", slider=True)
+ col.prop(gpcolor, "mix_factor", text="Blend", slider=True)
col.prop(gpcolor, "texture_offset", text="Location")
col.prop(gpcolor, "texture_angle", text="Rotation")