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-08-28 16:36:13 +0300
committerJoshua Leung <aligorith@gmail.com>2016-08-29 05:51:28 +0300
commit20c708d4714799363d2ad0011db23e1c02cd4f43 (patch)
tree0936520e9be1aa39ee6076b077f45d9dce8176a3 /release
parent8a02c5fc62ca4d4aaddf787a21cbf3d2cbe3d8a5 (diff)
GPencil UI: Make "Tint" settings take full width of panel in 2D editors
Parenting options are not visible there (i.e. they're only for the 3D view), so reserving space that isn't going to be used in those editors doesn't really make much sense. Furthermore, those property regions are often quite narrow too, so it doesn't help too much to keep these settings so narrow there.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_grease_pencil_common.py5
1 files changed, 4 insertions, 1 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 677c7b9960e..65f1fdf1fd5 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -834,7 +834,10 @@ class GreasePencilDataPanel:
split.prop(gpl, "show_points")
# Offsets + Parenting (where available)
- split = layout.split(percentage=0.5)
+ if context.space_data.type == 'VIEW_3D':
+ split = layout.split(percentage=0.5)
+ else:
+ split = layout.column() # parenting is not available in 2D editors...
split.active = not gpl.lock
# Offsets - Color Tint