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:
authorCampbell Barton <ideasman42@gmail.com>2012-07-15 00:53:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-07-15 00:53:52 +0400
commit41fe8b9ea94fa6877d35a51567cd83b255431306 (patch)
treef83e3d6e8121b49149b96064755f0b3bb322210c /release
parent5e7f8b83edaa82caabfea3bfaa72ff27c8e0e9d1 (diff)
use a different setting for fill/cyclic - you may want to have unfilled cyclic curves.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index d937837e5d1..874405bd66b 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -733,7 +733,9 @@ class CLIP_PT_active_mask_spline(Panel):
col = layout.column()
col.prop(spline, "weight_interpolation")
- col.prop(spline, "use_cyclic")
+ rowsub = col.row()
+ rowsub.prop(spline, "use_cyclic")
+ rowsub.prop(spline, "use_fill")
class CLIP_PT_active_mask_point(Panel):