[Bf-blender-cvs] [ba6daadb9d7] blender2.8: GP: Reorder Viewport Display panel options

Antonioya noreply at git.blender.org
Tue Sep 4 22:11:27 CEST 2018


Commit: ba6daadb9d77245a8ddb15c2f90b5a846f8ff3f9
Author: Antonioya
Date:   Tue Sep 4 22:10:56 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBba6daadb9d77245a8ddb15c2f90b5a846f8ff3f9

GP: Reorder Viewport Display panel options

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_data_gpencil.py b/release/scripts/startup/bl_ui/properties_data_gpencil.py
index 8230047657b..3eec80ad802 100644
--- a/release/scripts/startup/bl_ui/properties_data_gpencil.py
+++ b/release/scripts/startup/bl_ui/properties_data_gpencil.py
@@ -366,20 +366,20 @@ class DATA_PT_gpencil_display(DataButtonsPanel, Panel):
         gpl = context.active_gpencil_layer
 
         layout.prop(gpd, "xray_mode", text="Depth Ordering")
-        layout.prop(gpd, "edit_line_color", text="Edit Line Color")
         layout.prop(ob, "empty_draw_size", text="Marker Size")
 
-        layout.prop(gpd, "use_force_fill_recalc", text="Force Fill Update")
-
         col = layout.column(align=True)
         col.prop(gpd, "show_constant_thickness")
         sub = col.column()
         sub.active = not gpd.show_constant_thickness
         sub.prop(gpd, "pixel_factor", text="Thickness Scale")
 
+        layout.prop(gpd, "edit_line_color", text="Edit Line Color")
         if gpl:
             layout.prop(gpd, "show_stroke_direction", text="Show Stroke Directions")
 
+        layout.prop(gpd, "use_force_fill_recalc", text="Force Fill Update")
+
 
 class DATA_PT_custom_props_gpencil(DataButtonsPanel, PropertyPanel, Panel):
     _context_path = "object.data"



More information about the Bf-blender-cvs mailing list