[Bf-blender-cvs] [6ed6dd1] GPencil_EditStrokes: GPencil Layers UI: Rearranging buttons for a nicer flow

Joshua Leung noreply at git.blender.org
Sun Oct 12 14:45:18 CEST 2014


Commit: 6ed6dd13017032bff3db29c89f034f868a8aff33
Author: Joshua Leung
Date:   Mon Oct 13 01:43:33 2014 +1300
Branches: GPencil_EditStrokes
https://developer.blender.org/rB6ed6dd13017032bff3db29c89f034f868a8aff33

GPencil Layers UI: Rearranging buttons for a nicer flow

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

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 d5333c9..4dee85b 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -266,22 +266,24 @@ class GreasePencilDataPanel():
             subcol.prop(gpl, "color", text="")
             subcol.prop(gpl, "alpha", slider=True)
 
-            col.prop(gpl, "line_width", slider=True)
-
             #if debug:
             #   col.prop(gpl, "show_points")
 
             # Column 2 - Options (& Current Frame)
             col = split.column(align=True)
-            # Onion skinning
-            col.prop(gpl, "use_onion_skinning")
-            col.prop(gpl, "ghost_range_max", text="Frames")
 
+            col.prop(gpl, "line_width", slider=True)
             col.prop(gpl, "show_x_ray")
 
+            # Full-Row - Frame Locking
             if gpl.active_frame:
                 lock_status = "Locked" if gpl.lock_frame else "Unlocked"
                 lock_label = "Frame: %d (%s)" % (gpl.active_frame.frame_number, lock_status)
             else:
                 lock_label = "Lock Frame"
             layout.prop(gpl, "lock_frame", text=lock_label, icon='UNLOCKED')
+
+            # Onion skinning
+            col = layout.column(align=True)
+            col.prop(gpl, "use_onion_skinning")
+            col.prop(gpl, "ghost_range_max", text="Frames")




More information about the Bf-blender-cvs mailing list