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:
authorAntonioya <blendergit@gmail.com>2018-09-04 23:10:56 +0300
committerAntonioya <blendergit@gmail.com>2018-09-04 23:11:18 +0300
commitba6daadb9d77245a8ddb15c2f90b5a846f8ff3f9 (patch)
treeb19655bf37d1821da17f5eb3ec3f7792f8a8106b /release
parente5ee12f5355a636f1bc98beb719bcfa65a485da8 (diff)
GP: Reorder Viewport Display panel options
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_gpencil.py6
1 files changed, 3 insertions, 3 deletions
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"