[Bf-blender-cvs] [011786a] master: GPencil Fills: Small reshuffle of UI buttons

Joshua Leung noreply at git.blender.org
Sun May 8 15:11:26 CEST 2016


Commit: 011786a3f8d5102f410416f283e0dcd1da66557a
Author: Joshua Leung
Date:   Mon May 2 00:58:53 2016 +1200
Branches: master
https://developer.blender.org/rB011786a3f8d5102f410416f283e0dcd1da66557a

GPencil Fills: Small reshuffle of UI buttons

Now, stroke-related things (thickness, volumetric, points) and fill-related things
(HQ fill) are in the relevant columns, instead of having some in each column.

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index 542676a..894160c 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -576,11 +576,12 @@ class GreasePencilDataPanel:
         col = split.column(align=True)
         col.prop(gpl, "line_width", slider=True)
         col.prop(gpl, "use_volumetric_strokes")
-        col.prop(gpl, "use_hq_fill")
+        col.prop(gpl, "show_points", text="Points")
+        
 
         col = split.column(align=True)
+        col.prop(gpl, "use_hq_fill")
         col.prop(gpl, "show_x_ray")
-        col.prop(gpl, "show_points", text="Points")
 
         layout.separator()




More information about the Bf-blender-cvs mailing list