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:
authorJoshua Leung <aligorith@gmail.com>2016-05-01 15:58:53 +0300
committerJoshua Leung <aligorith@gmail.com>2016-05-08 15:53:50 +0300
commit011786a3f8d5102f410416f283e0dcd1da66557a (patch)
treee421cbcd28d43d8c2ea909b56aa13be05b3a5c19 /release/scripts/startup/bl_ui
parentb88535ed287aca6ea283b243f0d92eddb507afa9 (diff)
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.
Diffstat (limited to 'release/scripts/startup/bl_ui')
-rw-r--r--release/scripts/startup/bl_ui/properties_grease_pencil_common.py5
1 files changed, 3 insertions, 2 deletions
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 542676a66ee..894160c2c16 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()